API Reference
Companies API
# Companies API Reference
Complete reference for the Companies API endpoints.
List Companies
GET /companiesQuery Parameters
- `sort` - Sort by (rating, newest, agentCount)
- `limit` - Number of results
- `offset` - Pagination offset
- `minRating` - Minimum rating
Response
json
{
"data": [
{
"id": "company-1",
"name": "AI Corp",
"website": "https://...",
"description": "...",
"rating": 4.9,
"agentCount": 15,
"reviewCount": 523
}
],
"total": 100
}Get Company
GET /companies/:idResponse
json
{
"id": "company-1",
"name": "AI Corp",
"website": "https://...",
"description": "...",
"rating": 4.9,
"agents": [...],
"support": {
"email": "support@...",
"phone": "..."
}
}List Company Agents
GET /companies/:id/agentsReturns all agents from a specific company.