# PitchBook Company Info ## Overview | Property | Value | |----------|-------| | **Status** | active | | **Method** | `GET` | | **Endpoint** | `/v2/pitchbook/company/info` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 2 credits per call | | **Documentation** | https://www.piloterr.com/library/pitchbook-company-info | ## Description Get a PitchBook company profile: overview, funding, competitors and more via browser rendering. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/pitchbook/company/info' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Airbus Group ```json { "url": "https://pitchbook.com/profiles/company/11062-99", "name": "Airbus Group", "status": "Public", "website": "http://www.airbus.com", "employees": 166876, "company_id": "11062-99", "description": "Airbus is a global aerospace and defense firm.", "stock_symbol": "AIR", "year_founded": 1960, "corporate_office": { "city": "Leiden", "country": "Netherlands" }, "primary_industry": "Aerospace and Defense" } ``` ## Documentation ## Overview Get a PitchBook company profile: overview, office, industries, funding, competitors, investments and more when available on the public page. Pass a PitchBook company id or a full company profile URL. Browser rendering. Costs **2 credits** per call. ## Quickstart ``` GET https://api.piloterr.com/v2/pitchbook/company/info?query=11062-99 GET https://api.piloterr.com/v2/pitchbook/company/info?query=https://pitchbook.com/profiles/company/149504-14 ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Company id or `/profiles/company/{id}` URL | | `return_page_source` | boolean | no | Return rendered HTML instead of JSON | ## Response fields | Field | Type | Description | |---|---|---| | `company_id` / `name` / `url` | string | Identity | | `description` / `status` / `employees` | mixed | Overview | | `website` / `year_founded` | mixed | Basics | | `corporate_office` | object | Address when present | | `primary_industry` / `verticals` | mixed | Industry tags | | `funding` / `competitors` / `investments` | array | Deal data when exposed | | `financials` / `stock_performance` | object | Public companies | | `faqs` / `patents` | mixed | Extra sections when present | Fields vary by company status (Public, Private, Acquired, IPO). Locked PitchBook cells may appear as `null` with `"locked": true`. ## Error codes | Code | Meaning | |---|---| | `400` | Empty or invalid `query` | | `404` | Profile not found | | `500` | Rendering failed | ## Related endpoints - [PitchBook Search](https://www.piloterr.com/library/pitchbook-search)