> ## Documentation Index
> Fetch the complete documentation index at: https://orwel-22af1265.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Company

> Retrieve a specific company by ID

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the company
</ParamField>

## Response

<ResponseField name="data" type="object">
  Company object
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.orwel.io/api/v1/companies/company-uuid" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "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"
    }
  }
  ```
</ResponseExample>
