Skip to main content
GET
/
v1
/
sellers
/
{slug}
Get Seller Profile
curl --request GET \
  --url https://api.agentpowers.ai/v1/sellers/{slug}
import requests

url = "https://api.agentpowers.ai/v1/sellers/{slug}"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.agentpowers.ai/v1/sellers/{slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "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": []
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Path Parameters

slug
string
required

Response

Successful Response

display_name_slug
string
required
verified
boolean
required
total_skills
integer
required
total_downloads
integer
required
display_name
string | null
avatar_url
string | null
github_username
string | null
bio
string | null
website_url
string | null
github_url
string | null
linkedin_url
string | null
twitter_url
string | null
joined_at
string | null
skills
SellerSkillPreview · object[]