Multiples API

List of Companies

Introduction

POST /companies is the primary endpoint for searching and listing companies. Use it for:

  • ad-hoc discovery (filter by region, vertical, theme, founding year, ownership and more)

  • batch lookups by ID, name search

  • drive a mirror sync of your own dataset via the change-feed updated_at checkpoint.

Results are offset-paginated and return a compact company record; for the primary stock listing, valuation, fundamentals and deal-activity, fetch a single company from /companies/{id}.

Set up

Endpoint

POST https://multiples.vc/api/private/v1/companies

Request

Send a JSON body. Every field is optional - an empty body returns the first page of all companies. Wrap match criteria in filters; limit, page, sort and fields sit at the top level.

Get all (minimal) - first page, default page size:

{}

Get a filtered set - active European FinTech companies founded since 2005, newest first:

{
  "filters": {
    "themes": [
      "FinTech"
    ],
    "region": [
      "Western Europe",
      "Northern Europe"
    ],
    "founded_min": 2005,
    "active": true
  },
  "sort": "founded:desc",
  "limit": 3
}
fieldtypedescription
limitintegerPage size. Default 100, maximum 1000.
pageinteger1-indexed page number. Default 1.
sortstringfield:asc or field:desc (e.g. founded:desc, updated_at:asc). Valid sort fields are listed in /lookup/companies.
fieldsstringComma-separated allowlist of response fields to return.
filters.idstring[]Batch lookup by company ID (UUIDs).
filters.namestringCase-insensitive substring match on the display name (matches both the company's name and short_name).
filters.countrystring[]ISO 3166-1 alpha-3 country codes (e.g. USA, GBR, DEU).
filters.regionstring[]One or more of: Africa, Central Asia, East Asia, Eastern Europe, Latin America, Middle East, North America, Northern Europe, Oceania, South Asia, South-East Asia, Southern Europe, Western Europe.
filters.verticalsstring[]Returns companies tagged with any of these verticals (e.g. Biopharmaceuticals, Medical Devices, Industrial Software).
filters.themesstring[]Returns companies tagged with any of these themes (e.g. FinTech, B2B SaaS, BioTech, DeepTech).
filters.client_focusstring[]Match any of these client-focus tags (e.g. B2B, B2C).
filters.revenue_modelstring[]Match any of these revenue-model tags.
filters.company_typestring[]Match any of these company-type tags.
filters.ownershipstringExact match on ownership label (e.g. Publicly listed, Privately held).
filters.activebooleanFilter by active status.
filters.founded_minintegerFounding year (lower bound).
filters.founded_maxintegerFounding year (upper bound).
filters.ipoed_fromstring (date)IPO date on or after this date.
filters.ipoed_tostring (date)IPO date on or before this date.
filters.updated_atstring (date-time)Change-feed checkpoint: returns records updated at or after this timestamp. In this mode soft-deleted records are surfaced automatically.
filters.include_deletedbooleanInclude soft-deleted companies. Not needed in change-feed mode (an updated_at checkpoint already surfaces deletions); use it for non-change-feed queries. Default false.

Tip: verticals and themes are distinct vocabularies. FinTech is a theme; passing it under verticals returns no rows. Browse the exact accepted values for each filter in /lookup/companies.

Response

Response to the filtered request above (the matched records, newest first):

{
  "data": [
    {
      "id": "aaeb7348-5d44-4c29-9910-1c30c66efb77",
      "name": "XBP Europe",
      "short_name": "XBP Europe",
      "description": "XBP Global Holdings Inc is a multinational technology and services company that drives intelligent workflows for organizations. Through its proprietary platforms, agentic AI-driven automation, and domain expertise across industries and the public and private sectors, the firm enables its clients to entrust their digital transformations and workflows. By combining innovation with execution excellence, XBP Global helps businesses reimagine business process automation and enable digital transformation.",
      "website": "https://www.xbpglobal.com",
      "linkedin": "https://www.linkedin.com/company/xbp-europe",
      "country": "USA",
      "region": "Western Europe",
      "city": "Staines-upon-Thames",
      "area": null,
      "founded": 2022,
      "verticals": [
        "Financial Services Software",
        "Public Sector & Non-Profit Software",
        "IT Consulting"
      ],
      "themes": [
        "FinTech",
        "B2B SaaS",
        "Vertical SaaS",
        "GovTech"
      ],
      "client_focus": [
        "B2B"
      ],
      "revenue_model": [
        "Services"
      ],
      "company_type": [
        "Public company"
      ],
      "ownership": "Publicly listed",
      "active": true,
      "ipoed": "2023-11-30",
      "ceo": "Mr. Andrej Jonovic",
      "created_at": "2026-01-11T11:06:02.563888+00:00",
      "updated_at": "2026-06-12T23:32:35.105276+00:00",
      "deleted": false,
      "is_public": true
    },
    {
      "id": "0206f1e2-369b-44ec-8ca1-a05058b6cb1b",
      "name": "Payoneer",
      "short_name": "Payoneer",
      "description": "Payoneer Global Inc is a financial technology company purpose-built to enable the world’s small and medium-sized businesses (SMB(s)) to grow and operate their businesses around the world by reliably and securely connecting them to the digital economy. The company started to empower commerce by connecting businesses, professionals, countries, and currencies with its diversified cross-border payments platform.",
      "website": "https://www.payoneer.com",
      "linkedin": "https://www.linkedin.com/company/optile",
      "country": "USA",
      "region": "Western Europe",
      "city": "Munich",
      "area": "New York",
      "founded": 2021,
      "verticals": [
        "Payment Service Providers",
        "Money Transfer"
      ],
      "themes": [
        "FinTech"
      ],
      "client_focus": [
        "B2B"
      ],
      "revenue_model": [
        "Commission",
        "Subscription"
      ],
      "company_type": [
        "Public company"
      ],
      "ownership": "Publicly listed",
      "active": true,
      "ipoed": "2021-06-28",
      "ceo": "Mr. John Caplan",
      "created_at": "2026-01-11T11:06:02.563888+00:00",
      "updated_at": "2026-06-12T23:32:34.423465+00:00",
      "deleted": false,
      "is_public": true
    },
    {
      "id": "8ccc5eb9-1879-40f4-b4bf-6e66141f0660",
      "name": "Crypto Blockchain Industries",
      "short_name": "Crypto Blockchain Industries",
      "description": "Crypto Blockchain Industries SA is a company offering a comprehensive investment approach covering the majority aspects of blockchain.",
      "website": "https://www.cbicorp.io",
      "linkedin": "https://www.linkedin.com/company/cbi-crypto-blockchain-industries/?originalSubdomain=fr",
      "country": "FRA",
      "region": "Western Europe",
      "city": "Paris",
      "area": null,
      "founded": 2021,
      "verticals": [
        "Gaming - Console & PC",
        "Crypto & Web3 Platforms"
      ],
      "themes": [
        "FinTech"
      ],
      "client_focus": [
        "B2C",
        "B2B"
      ],
      "revenue_model": [
        "Product sales"
      ],
      "company_type": [
        "Public company"
      ],
      "ownership": "Publicly listed",
      "active": true,
      "ipoed": "2021-10-26",
      "ceo": null,
      "created_at": "2026-01-11T11:06:02.563888+00:00",
      "updated_at": "2026-06-12T23:32:30.567826+00:00",
      "deleted": false,
      "is_public": true
    }
  ],
  "meta": {
    "page": 1,
    "limit": 3,
    "returned": 3,
    "total": 30,
    "has_more": true
  }
}

Fields

data is an array of company records; meta carries pagination state. Every record includes all fields; where a value is unavailable it is returned as null (or an empty array), never omitted.

Identity

fieldtypedescription
idstring (uuid)Stable company identifier
namestring | nullCanonical display name (the short_name where populated, otherwise the raw company name)
short_namestring | nullThe company's short / common name as stored
descriptionstring | nullBusiness description
websitestring | nullWebsite URL
linkedinstring | nullLinkedIn profile URL
countrystring | nullISO 3166-1 alpha-3 country code
regionstring | nullWorld region / continent
citystring | nullCity
areastring | nullState / province / sub-region (if relevant)
foundedinteger | nullFounding year
ceostring | nullCEO name

Classification

fieldtypedescription
verticalsstring[] | nullVertical tags
themesstring[] | nullTheme tags
client_focusstring[] | nullClient-focus tags (e.g. B2B, B2C)
revenue_modelstring[] | nullRevenue-model tags
company_typestring[] | nullCompany-type tags
ownershipstring | nullOwnership label (e.g. Publicly listed, Privately held)

Status

fieldtypedescription
activeboolean | nullWhether the company is currently active
ipoedstring (date) | nullIPO date (if the company has gone public)
is_publicbooleantrue if the company is public
created_atstring (date-time)Record creation timestamp (UTC)
updated_atstring (date-time)Timestamp of the last update to this record (UTC)
deletedbooleantrue if the record has been soft-deleted; appears in change-feed pulls

Pagination (meta)

fieldtypedescription
pageinteger1-indexed page number echoed back
limitintegerPage size used
returnedintegerNumber of rows in this response
totalintegerTotal rows matching the query
has_morebooleantrue when further pages remain

On this page