Skip to main content
GET
/
api
/
funding-analytics
/
round-transitions
Round transitions — stage progression analysis
curl --request GET \
  --url https://api.example.com/api/funding-analytics/round-transitions \
  --header 'Authorization: Bearer <token>'
{
  "transitions": [
    {
      "from": "<string>",
      "to": "<string>",
      "count": 123,
      "median_days": 123
    }
  ],
  "time_between_rounds": [
    {
      "label": "<string>",
      "median_days_to_next": 123,
      "count": 123
    }
  ],
  "query_info": {
    "label_type": "<string>",
    "total_transitions": 123,
    "timing_ms": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

label_type
enum<string>
default:standardized

How to label rounds: standardized (mapped), self_reported (raw)

Available options:
standardized,
self_reported
Example:

"standardized"

filter
string

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

Example:

"year[gte]:2020"

Response

Round transition data

transitions
object[]
required
time_between_rounds
object[]
required
query_info
object
required