Skip to main content
GET
/
api
/
v1
/
companies
/
{company_slug}
Get a Company Detail
curl --request GET \
  --url https://sacra.com/api/v1/companies/{company_slug}/ \
  --header 'Authorization: <api-key>'
{
  "company": {
    "id": 239,
    "slug": "kraken",
    "name": "Kraken",
    "domain": "kraken.com",
    "cik": null,
    "is_active": true,
    "type": "private",
    "updated_at": "2026-02-09T20:03:19Z",
    "logo": {
      "url": "https://images.prismic.io/sacra/c2994815-5452-4ae9-a423-6bdfacee2a9b_mk0qvsZ9.jpeg?auto=format,compress",
      "dimensions": {
        "width": 400,
        "height": 400
      }
    },
    "social": [
      {
        "url": "https://twitter.com/krakenfx",
        "type": "twitter"
      },
      {
        "url": "https://www.linkedin.com/company/krakenfx/about/",
        "type": "linkedin"
      }
    ],
    "founding_year": 2011,
    "legal_entities": [
      {
        "name": "Payward, Inc.",
        "country": "United States"
      }
    ],
    "headquarters": {
      "city": "San Francisco",
      "country": "United States"
    },
    "key_people": {
      "founders": [
        {
          "id": "869b4ca8-da2c-4bad-8f6f-9fe89e550755",
          "name": "Jesse Powell"
        }
      ],
      "ceo": [
        {
          "id": "869b4ca8-da2c-4bad-8f6f-9fe89e550755",
          "name": "Jesse Powell"
        }
      ]
    },
    "description": "Crypto exchange for professional traders with deep liquidity and strong security infrastructure",
    "categories": [
      {
        "id": 45,
        "name": "crypto exchange",
        "slug": "crypto-exchange"
      },
      {
        "id": 39,
        "name": "crypto",
        "slug": "crypto"
      }
    ],
    "documents": [
      {
        "id": 614,
        "slug": "david-ripley-kraken-crypto-exchanges",
        "title": "David Ripley, COO of Kraken, on the future of cryptocurrency exchanges",
        "link": "https://sacra-pdfs.s3.us-east-2.amazonaws.com/david-ripley-kraken-crypto-exchanges.pdf",
        "type": "interview",
        "date": "2022-06-13",
        "relation": "subject",
        "preview_meta": {
          "title": "David Ripley, COO of Kraken, on the future of cryptocurrency exchanges",
          "image": "https://images.prismic.io/sacra/11a55ca0-161a-4019-aba4-d1cfdc5c24fd_David+Ripley.png?auto=compress,format",
          "description": "Sacra interview with David Ripley, COO of Kraken."
        }
      }
    ],
    "company_datasets": [
      {
        "id": "0fcc2ca9-ba40-4301-95e6-807341de19dc",
        "name": "Kraken: Revenue ($M)",
        "x_label": "Time",
        "y_label": "Revenue",
        "data": [
          {
            "x": "2022-12-31T00:00:00.000Z",
            "y": 931200000,
            "type": "historical"
          },
          {
            "x": "2023-12-31T00:00:00.000Z",
            "y": 657894736.84,
            "type": "historical"
          },
          {
            "x": "2024-12-31T00:00:00.000Z",
            "y": 1500000000,
            "type": "historical"
          }
        ],
        "source_type": "Google Sheets",
        "source_url": "https://docs.google.com/spreadsheets/d/example/edit",
        "status": "Active",
        "data_type": "Revenue",
        "frequency": "Year",
        "metric": "USD",
        "start_date": "2022-12-31T00:00:00Z",
        "end_date": "2025-09-30T00:00:00Z",
        "created_at": "2023-09-06T15:48:50.491109Z",
        "updated_at": "2026-02-09T07:14:13.976508Z",
        "company": 239
      }
    ],
    "financials": [
      {
        "name": "latest_estimated_revenue",
        "value": 1551900000,
        "date": "2025-09-30"
      },
      {
        "name": "latest_estimated_valuation",
        "value": 20000000000,
        "date": "2025-11-19"
      },
      {
        "name": "total_estimated_funding",
        "value": 832000000,
        "date": "2025-11-19"
      }
    ],
    "listings": [],
    "milestones": []
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sacra.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate using one of two formats:

  • Organization/user token: Token <your-token>
  • Stytch JWT: Bearer <your-jwt>

Path Parameters

company_slug
string
required

URL slug of the company (e.g. stripe).

Response

Full company detail payload.

company
object
required