Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add agent api docs #463

Merged
merged 8 commits into from
Jan 24, 2025
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions src/content/docs/ai-agents/Agents-APIs/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
order: 6
title: Agent APIs
date: 2025-01-24
desc: AI agent APIs from Fleek.
---

# Fleek AI Agent APIs

Deploying AI agents on Fleek has never been a hassle and you can now deploy from within your applications and projects as well. By exposing these APIs, Fleek enables users to seamlessly integrate AI agent management capabilities into their applications.

## Prerequisites and setup

To follow the guide below, you need to ensure that you have a Fleek account. You can sign up for one if you don’t already have one at app.fleek.xyz.

**API Base Endpoint**: https://api.fleek.xyz/api/v1

:::note
You can use the Bearer token generated from signing in to your account to authenticate the request to get your API Token [here](https://api.fleek.xyz/api-docs/openapi.json#tag/iamtokens/POST/api/v1/tokens).
:::

## Using the Fleek agent APIs

You can find all the APIs on our [Scalar documentation](https://api.fleek.xyz/api-docs/openapi.json). With these APIs, you can:

- Fetch an agent’s details
- Create agents
- Get an agent’s status (active or inactive)
- View your created agents
- Delete agents
- Update agents
- Get agent logs
- Start an agent
- Stop an agent
Loading