Skip to main content
GET
/
company
Get company details and recent funding by identifier
curl --request GET \
  --url https://tryfundable.ai/api/v1/company \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "company": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Acme Corporation",
      "legal_name": "Acme Corporation Inc.",
      "guru_permalink": "acme-corporation",
      "domain": "acme.com",
      "region": "San Francisco Bay Area",
      "short_description": "<string>",
      "long_description": "<string>",
      "num_employees": "11-50",
      "linkedin": "<string>",
      "twitter": "<string>",
      "facebook": "<string>",
      "pitchbook": "<string>",
      "crunchbase": "<string>",
      "address": "<string>",
      "ipo_status": "private",
      "num_funding_rounds": 11,
      "num_investors": 14,
      "total_raised": 2834940000,
      "latest_valuation_usd": 31000000000,
      "latest_valuation_date": "2017-03-09T00:00:00.000Z",
      "industries": [
        {
          "permalink": "artificial-intelligence",
          "name": "Artificial Intelligence"
        }
      ],
      "location": {
        "region": {
          "name": "San Francisco Bay Area",
          "permalink": "san-francisco-bay-area"
        },
        "country": {
          "name": "United States",
          "permalink": "united-states"
        },
        "state": {
          "name": "California",
          "permalink": "california"
        },
        "city": {
          "name": "San Francisco",
          "permalink": "san-francisco-california"
        }
      },
      "latest_deal": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "SERIES_B",
        "total_round_raised": 25000000,
        "date": "2024-01-15T00:00:00Z",
        "extension": false,
        "pre": false,
        "intermediate": "NONE",
        "description": {
          "short_description": "<string>",
          "long_description": "<string>"
        },
        "investors": [
          "c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82",
          "c6bc63af-cb37-453d-9c20-35f56fb87ee9"
        ],
        "financings": [
          {
            "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "type": "<string>",
            "size_usd": 25000000,
            "size_native": 25000000,
            "currency": "USD"
          }
        ]
      },
      "all_investor_ids": [
        "c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82",
        "c6bc63af-cb37-453d-9c20-35f56fb87ee9"
      ],
      "similarity": null
    }
  },
  "meta": {
    "page": 0,
    "page_size": 1,
    "credits_used": 10,
    "credit_source": "monthly",
    "monthly_credits_remaining": 990,
    "purchased_credits_remaining": 500
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format. Format: Authorization: Bearer vg_your_api_key_here

API keys follow the pattern: vg_[12_hex_chars]_[32_base64url_chars]

Query Parameters

id
string<uuid>

Company UUID

domain
string

Company domain or full URL (e.g., "stripe.com" or "https://stripe.com") — URLs are automatically parsed to extract the domain

linkedin
string

LinkedIn company URL (e.g., "https://linkedin.com/company/stripe")

crunchbase
string

Crunchbase organization URL (e.g., "https://crunchbase.com/organization/stripe")

Response

Successful response with company data

success
boolean
required
Example:

true

data
object
required
meta
object
required