Fetch funding signals with filtering, pagination, and search capabilities. Returns a list of companies with funding acti…
Authentication
No API key - create one in the dashboard
Parameters
Page number (default: 1)
Results per page (max: 100, default: 20)
Start date (ISO 8601: YYYY-MM-DD)
End date (ISO 8601: YYYY-MM-DD)
Relative date shortcut
Comma-separated country codes
Pipe-separated category list
Comma-separated industry names (exact match)
Comma-separated subcategory IDs
Comma-separated round types
Comma-separated round flavors: bridge, extension, secondary
Minimum funding amount (USD cents)
Maximum funding amount (USD cents)
Currency symbol filter
Search company name or industry keywords
Partial match on company name
Partial match on investor name
Comma-separated: verified, unverified, pending
Minimum employee count
Maximum employee count
Minimum founded year
Maximum founded year
Sort field (default: occurred_at)
Sort direction (default: desc)
Set to "true" to return only pagination metadata (no credits charged)
import requests url = "https://api.coldiq.com/v1/signalbase/funding-signals" headers = { "Authorization": "Bearer ", "Content-Type": "application/json" } response = requests.get(url, headers=headers) print(response.json())