Skip to main content

Get Agents

GET 

https://api.fereai.xyz/ta/hero-agents/

Get all Monk Autonomous Agents

Responses

Successful Response
import http.client

conn = http.client.HTTPSConnection("api.fereai.xyz")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/ta/hero-agents/", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://api.fereai.xyz/ta
ResponseClear

Click the Send API Request button above and see the response here!