List Sellers
curl --request GET \
--url https://api.agentpowers.ai/v1/sellersimport requests
url = "https://api.agentpowers.ai/v1/sellers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/v1/sellers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"display_name_slug": "<string>",
"verified": true,
"total_skills": 123,
"total_downloads": 123,
"display_name": "<string>",
"avatar_url": "<string>",
"github_username": "<string>",
"bio": "<string>",
"website_url": "<string>",
"github_url": "<string>",
"linkedin_url": "<string>",
"twitter_url": "<string>",
"joined_at": "<string>",
"skills": []
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}sellers
List Sellers
List all sellers with published skills.
GET
/
v1
/
sellers
List Sellers
curl --request GET \
--url https://api.agentpowers.ai/v1/sellersimport requests
url = "https://api.agentpowers.ai/v1/sellers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/v1/sellers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"display_name_slug": "<string>",
"verified": true,
"total_skills": 123,
"total_downloads": 123,
"display_name": "<string>",
"avatar_url": "<string>",
"github_username": "<string>",
"bio": "<string>",
"website_url": "<string>",
"github_url": "<string>",
"linkedin_url": "<string>",
"twitter_url": "<string>",
"joined_at": "<string>",
"skills": []
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Query Parameters
Required range:
1 <= x <= 100Required range:
x >= 0Pattern:
^(newest|popular|name)$Was this page helpful?