Skip to main content
GET
/
api
/
filters
/
search
Search filters and values
curl --request GET \
  --url https://api-next.dealroom.co/api/filters/search \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "kind": "value",
      "filter_key": "tag_id",
      "filter_picker_key": "tag_id:industry",
      "filter_label": "Industries",
      "pinned_sub_type": "industry",
      "label": "Fintech",
      "value": "42",
      "entity_count": 1200,
      "source_type": "industry"
    },
    {
      "kind": "year",
      "filter_key": "launch_date",
      "filter_picker_key": "launch_date",
      "filter_label": "Founded Year",
      "label": "Founded Year: After 2020",
      "value": "2020",
      "operator": "gte"
    },
    {
      "kind": "filter",
      "filter_key": "tag_id",
      "filter_picker_key": "tag_id:sector",
      "filter_label": "Sectors",
      "pinned_sub_type": "sector",
      "category": "Sectors"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.beta.dealroom.co/llms.txt

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

Authorizations

Authorization
string
header
required

Auth0 JWT access token. Paste a token obtained from your preferred OAuth2 flow. For machine-to-machine use, the OAuth2 client_credentials scheme below can mint a token directly from your client_id / client_secret inside the Swagger UI Authorize dialog.

Query Parameters

scope
enum<string>
required

Required. One of: companies, investors, transactions, people, universities, news

Available options:
companies,
investors,
transactions,
people,
universities,
news
Example:

"companies"

q
string
required

Search query (min 1 char). Filter labels and year heuristics are matched immediately; value lookup starts at 3 chars.

Minimum string length: 1
Example:

"fintech"

limit_per_row
string

Max value matches per picker row (1-10, default 3)

Example:

"3"

limit
string

Total result cap (1-50, default 20)

Example:

"20"

Response

Search matches in tier-and-row order

data
object[]
required