Api Catalog
curl --request GET \
--url https://api.agentpowers.ai/.well-known/api-catalogimport requests
url = "https://api.agentpowers.ai/.well-known/api-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/api-catalog', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));well-known
Api Catalog
GET
/
.well-known
/
api-catalog
Api Catalog
curl --request GET \
--url https://api.agentpowers.ai/.well-known/api-catalogimport requests
url = "https://api.agentpowers.ai/.well-known/api-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/api-catalog', 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