API Reference

Companies API

# Companies API Reference

Complete reference for the Companies API endpoints.

List Companies

GET /companies

Query 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/:id

Response

json
{
  "id": "company-1",
  "name": "AI Corp",
  "website": "https://...",
  "description": "...",
  "rating": 4.9,
  "agents": [...],
  "support": {
    "email": "support@...",
    "phone": "..."
  }
}

List Company Agents

GET /companies/:id/agents

Returns all agents from a specific company.