DocsAPICompanies

Get company

Returns a single company by its ID, with the same details as the company on a portfolio company.

GET
/companies/{id}
Path

Company ID

Example: 1

Path Parameters

idRequiredstring

Company ID

Pattern: "^\\d+$"

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/companies/1" \
  -H "Authorization: Bearer <token>"

Successfully retrieved company

{
  "id": "1",
  "uuid": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Acme Inc",
  "legal_name": "Acme Corporation Ltd",
  "tagline": "Redefining payments",
  "description": "A leading provider of innovative solutions",
  "domain": "acme.com",
  "logo_url": "https://example.com/logo.png",
  "country": "United States",
  "incorporation_country": "United States",
  "city": "San Francisco",
  "currency": "USD",
  "segment": "SaaS",
  "tags": [
    "fintech",
    "b2b"
  ],
  "founded_on": "2020-01-15",
  "address": "123 Main St, San Francisco, CA 94105",
  "investment_manager": {
    "id": "1",
    "name": "John Doe",
    "avatar_url": "https://example.com/avatar.png"
  },
  "board_position": "Chairman",
  "deputy": {
    "id": "2",
    "name": "Jane Smith",
    "avatar_url": "https://example.com/avatar2.png"
  },
  "deputy_board_position": "Vice Chairman",
  "fields": {
    "sector": "Technology",
    "stage": "Growth"
  },
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-06-20T14:45:00Z"
}