Reference
Parameters & Limits

Parameters & Limits

Time windows

Many endpoints accept time window parameters to control the lookback period.

since parameter

FormatExampleDescription
Hourssince=24hLast 24 hours
Dayssince=7dLast 7 days
ISO datesince=2026-03-01Since specific date
ISO datetimesince=2026-03-01T00:00:00ZSince specific timestamp

hours parameter

Shorthand for since. Pass an integer number of hours.

GET /v1/follows/new?hours=48
# equivalent to: GET /v1/follows/new?since=48h

If both since and hours are provided, since takes priority.

Defaults by endpoint

EndpointDefault
GET /v1/follows/new24h
GET /v1/follows/enriched24h
GET /v1/convergence7d
GET /v1/trending7d
GET /v1/vc/:handle/activity30d
GET /v1/feed24h

Invalid values

If the time parameter can't be parsed, the API returns:

{ "error": "Invalid \"since\" parameter. Use \"24h\", \"7d\", or \"YYYY-MM-DD\"." }

Result limits

EndpointDefaultMax
GET /v1/search50200
GET /v1/trending25100
GET /v1/feed50200
GET /v1/discover2050
GET /v1/vc/:handle/similar2050

Other endpoints return all matching results within the time window.

Filtering

Enriched follows filters

GET /v1/follows/enriched supports filtering results by classification:

ParameterExampleDescription
sector?sector=DeFiFilter by sector (substring match)
keyword?keyword=stablecoinSearch username, name, description, sector
entity_type?entity_type=companyFilter by entity type
tag?tag=my-custom-tagFilter by custom tag or rule name

Feed filters

ParameterValuesDescription
event_typenew_follow, convergenceFilter by event type
sectorAny sector stringFilter targets by sector

Discover filters

ParameterDefaultDescription
sector-Narrow by sector
min_signal0.3Minimum signal score (0.0 - 1.0)

Classification

AI classification

Several endpoints return classification data:

FieldValuesDescription
sectorDeFi, AI, Infrastructure, Gaming, Trading, Payments, etc.Primary sector
entity_typecompany, project, person, fund, vcEntity classification
is_companytrue/falseWhether entity is an organization
confidencehigh, medium, lowClassification confidence

Classification is probabilistic. For workflows requiring stable labels, query once and cache.

Custom classification rules

Create custom rules via POST /v1/classify/rules to tag entities matching your criteria. These rules are applied automatically in /v1/follows/enriched and /v1/discover responses.

Data freshness

Follow data is updated periodically through the processing pipeline. The API serves the latest processed data, not live fetches.

  • New follows: Detected within hours of the actual follow event
  • Tracked accounts: Baseline established on first track, then monitored daily
  • Classification: Cached server-side, refreshed periodically
  • Company intelligence: Fetched on-demand, with upstream caching (60 min Twitter, 2 hr scrape, 24 hr LinkedIn)

Cost tracking

Every charged response includes cost and balance fields:

{
  "data": [...],
  "cost_cents": 10,
  "balance_cents": 9890
}

Use GET /v1/status to check your current balance, daily spend, and usage breakdown at any time (free).