Track View
curl --request POST \
--url https://api.agentpowers.ai/v1/skills/{slug}/viewimport requests
url = "https://api.agentpowers.ai/v1/skills/{slug}/view"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.agentpowers.ai/v1/skills/{slug}/view', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}skills
Track View
Record a view for a skill. Unauthenticated, rate-limited.
POST
/
v1
/
skills
/
{slug}
/
view
Track View
curl --request POST \
--url https://api.agentpowers.ai/v1/skills/{slug}/viewimport requests
url = "https://api.agentpowers.ai/v1/skills/{slug}/view"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.agentpowers.ai/v1/skills/{slug}/view', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Response
Successful Response
Was this page helpful?
⌘I