Skip to main content
GET
/
api
/
v1
/
companies
/
{id}
curl -X GET "https://api.orwel.io/api/v1/companies/company-uuid" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": {
    "id": "company-uuid",
    "name": "Acme Corp",
    "domain": "acme.com",
    "description": "Leading provider of widgets",
    "employees": "100-500",
    "main_industry": "Manufacturing",
    "created_at": "2025-01-01T00:00:00Z"
  }
}

Path Parameters

id
string
required
The unique identifier of the company

Response

data
object
Company object
curl -X GET "https://api.orwel.io/api/v1/companies/company-uuid" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": {
    "id": "company-uuid",
    "name": "Acme Corp",
    "domain": "acme.com",
    "description": "Leading provider of widgets",
    "employees": "100-500",
    "main_industry": "Manufacturing",
    "created_at": "2025-01-01T00:00:00Z"
  }
}