Skip to main content
GET
/
api
/
filters
Discover available filters
curl --request GET \
  --url https://api-next.dealroom.co/api/filters \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "key": "tag_id",
      "label": "Tags",
      "description": "Find companies by sector, industry, technology, or other tags.",
      "description_long": "Use tags to narrow companies by Dealroom's taxonomy. Combine multiple tag IDs with multi-value operators.",
      "examples": [
        {
          "value": 42,
          "label": "Fintech"
        },
        {
          "value": 123,
          "label": "Climate"
        }
      ],
      "type": "id_lookup",
      "category": "Sectors",
      "operators": [
        "eq",
        "neq",
        "in_any",
        "in_all",
        "nin_any",
        "nin_all"
      ],
      "supports_type_filter": true,
      "sub_types": [
        {
          "key": "industry",
          "label": "Industries"
        },
        {
          "key": "technology",
          "label": "Technologies"
        },
        {
          "key": "sector",
          "label": "Sectors"
        }
      ]
    },
    {
      "key": "launch_date",
      "label": "Founded Year",
      "type": "date",
      "category": "Company Info",
      "operators": [
        "gte",
        "lte",
        "between"
      ]
    },
    {
      "key": "is_vc_backed",
      "label": "VC Backed",
      "type": "boolean",
      "category": "Funding",
      "operators": [
        "eq"
      ]
    }
  ]
}

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"

Response

Available filters with category metadata

data
object[]
required