Agent Skills Index
curl --request GET \
--url https://api.agentpowers.ai/.well-known/agent-skills/index.jsonimport requests
url = "https://api.agentpowers.ai/.well-known/agent-skills/index.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/agent-skills/index.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));well-known
Agent Skills Index
GET
/
.well-known
/
agent-skills
/
index.json
Agent Skills Index
curl --request GET \
--url https://api.agentpowers.ai/.well-known/agent-skills/index.jsonimport requests
url = "https://api.agentpowers.ai/.well-known/agent-skills/index.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/agent-skills/index.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200 - application/json
Successful Response
Was this page helpful?
⌘I