> ## Documentation Index
> Fetch the complete documentation index at: https://docs.okrapdf.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Company

> Retrieve details for a specific company.

## Overview

Returns details for a single company identified by exchange and ticker. No authentication required.

## Request

<ParamField path="exchange" type="string" required>
  Stock exchange code (e.g. `NASDAQ`).
</ParamField>

<ParamField path="ticker" type="string" required>
  Company ticker symbol (e.g. `AAPL`).
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl "https://api.okrapdf.com/v1/companies/NASDAQ/AAPL"
  ```
</RequestExample>

### Response

```json theme={null}
{
  "exchange": "NASDAQ",
  "ticker": "AAPL",
  "name": "Apple Inc."
}
```
