# Comparable Companies

`GET /v1/comps/{ticker}`

Subject company plus peers with valuation multiples.

Returns the subject company and its comparable peers, each with market cap and valuation multiples (P/E, P/S, EV/EBITDA, EV/UFCF, EBITDA margin) — ready to drop into a comps table.

Authentication: `Authorization: Bearer <API key>`. As-reported SEC fundamentals, quotes, valuation and screener.

## Path parameters

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `ticker` | string | yes | — | US-listed ticker symbol (1–12 characters, case-insensitive). |

## Request

```bash
curl "https://app.akyla.ai/v1/comps/AAPL" \
  -H "Authorization: Bearer $AKYLA_API_KEY"
```

## Response

`200 OK` · `application/json`

| Attribute | Type | Description |
| --- | --- | --- |
| `data.subject` | object | The subject company’s comp row. |
| `data.comps[]` | object[] | Peer comp rows. |
| `data.comps[].pe / ps / evEbitda / evUfcf` | number | Valuation multiples (null when not meaningful). |
| `data.comps[].ebitdaMargin` | number | EBITDA margin (decimal). |

## Example response

```json
{
  "data": {
    "subject": {
      "ticker": "AAPL",
      "name": "Apple Inc.",
      "marketCap": 4150000,
      "pe": 40.5,
      "ps": 10.2,
      "evEbitda": 30.2,
      "evUfcf": 38.1,
      "ebitdaMargin": 0.339,
      "noData": false
    },
    "comps": [
      {
        "ticker": "MSFT",
        "name": "Microsoft Corp.",
        "marketCap": 3600000,
        "pe": 36.2,
        "ps": 13.1,
        "evEbitda": 24.8,
        "evUfcf": 33,
        "ebitdaMargin": 0.49,
        "noData": false
      }
    ]
  },
  "meta": {
    "ticker": "AAPL",
    "source": "SEC XBRL + market data",
    "api_version": "v1",
    "generated_at": "2026-06-27T15:24:00.000Z"
  }
}
```

Part of the Financial Data API — full reference: https://app.akyla.ai/docs (Markdown: https://app.akyla.ai/docs.md).
