Get Agents
GEThttps://api.fereai.xyz/ta/hero-agents/
Get all Monk Autonomous Agents
Responses
- 200
Successful Response
- python
- curl
- nodejs
- HTTP.CLIENT
- REQUESTS
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"))
ResponseClear