Skip to main content
GET
/
api
/
funding-analytics
/
funnel
Funding funnel — capital-phase distribution
curl --request GET \
  --url https://api-next.dealroom.co/api/funding-analytics/funnel \
  --header 'Authorization: Bearer <token>'
{
  "rows": [
    {
      "label": "<string>",
      "buckets": [
        123
      ]
    }
  ],
  "bucket_labels": [
    "<string>"
  ],
  "bucket_group_labels": [
    "<string>"
  ],
  "total_per_bucket": [
    123
  ],
  "grand_total": 123,
  "query_info": {
    "dimension": "<string>",
    "top_n": 123,
    "timing_ms": 123
  }
}

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

dimension
enum<string>
default:sector

Dimension to cross-tabulate against funding buckets

Available options:
sector,
country,
continent,
city,
region,
technology,
business_model,
income_stream,
client_focus,
investor_type
Example:

"sector"

top_n
string

Max dimension values (1-50, default 15)

Example:

"15"

filter
string

Filter expression: and(key[op]:value,...). Same syntax as /api/aggregate/:source

Example:

"sector[eq]:Fintech"

Response

Funnel distribution data

rows
object[]
required
bucket_labels
string[]
required
bucket_group_labels
string[]
required
total_per_bucket
number[]
required
grand_total
number
required
query_info
object
required