List Agents
curl --request GET \
--url https://api.agentpowers.ai/v1/agentsimport requests
url = "https://api.agentpowers.ai/v1/agents"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/v1/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"slug": "<string>",
"title": "<string>",
"description": "<string>",
"category": "<string>",
"type": "<string>",
"price_cents": 123,
"currency": "<string>",
"version": "<string>",
"security_status": "<string>",
"download_count": 123,
"long_description": "<string>",
"view_count": 0,
"install_count": 0,
"rating_average": 123,
"rating_count": 0,
"author": {
"display_name": "<string>",
"github_username": "<string>",
"display_name_slug": "<string>",
"avatar_url": "<string>",
"verified": false
},
"source": "<string>",
"source_url": "<string>",
"source_installs": 123,
"source_stars": 123
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}agents
List Agents
List published agents with optional filtering and sorting.
GET
/
v1
/
agents
List Agents
curl --request GET \
--url https://api.agentpowers.ai/v1/agentsimport requests
url = "https://api.agentpowers.ai/v1/agents"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/v1/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"slug": "<string>",
"title": "<string>",
"description": "<string>",
"category": "<string>",
"type": "<string>",
"price_cents": 123,
"currency": "<string>",
"version": "<string>",
"security_status": "<string>",
"download_count": 123,
"long_description": "<string>",
"view_count": 0,
"install_count": 0,
"rating_average": 123,
"rating_count": 0,
"author": {
"display_name": "<string>",
"github_username": "<string>",
"display_name_slug": "<string>",
"avatar_url": "<string>",
"verified": false
},
"source": "<string>",
"source_url": "<string>",
"source_installs": 123,
"source_stars": 123
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Query Parameters
Maximum string length:
50Pattern:
^(newest|price_asc|price_desc|downloads|relevance)$Pattern:
^(free|paid)$Pattern:
^(pass|warn)$Required range:
1 <= x <= 100Required range:
x >= 0Was this page helpful?