Skip to main content
GET
/
api
/
analytics
/
funding-analytics
/
funnel
Funding funnel
curl --request GET \
  --url https://api-next.dealroom.co/api/analytics/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
  }
}

Authorizations

Authorization
string
header
required

OAuth2 client-credentials flow against the Dealroom Auth0 tenant. Use the client_id / client_secret from a Programmatic API key. Tokens are valid for 24h — Swagger UI will reuse the same token across operations.

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/analytics/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