deepline_native_get_funding_updates is the public read endpoint for
Deepline’s globally scoped funding-rounds feed. It returns funding discoveries
already in the feed; it does not deploy a Monitor, create a radar, send a
webhook, or change any data.
Each call costs **0.10. Each subsequent cursor page is a new call.
since
field filters by when Deepline discovered an update.
Get the first page
Inspect the live contract and price before calling it:Inputs and paging
The response orders updates most recent first. It includes
has_more and
next_cursor; when has_more is true, pass the exact next_cursor value in
the next request. Do not construct or alter cursor values.
Call the API
Use a workspace-scoped API key from a trusted server or worker. Do not expose the key in browser code.data.has_more: true.
update_id as your durable deduplication key. round can be Unknown
when the source reports a raise without a disclosed stage; treat it as an
unstaged round, not as a funding category.
Choose a polling strategy
Store the last successfulsince timestamp and the completed cursor chain in
your own system. Use since to narrow a later polling window, then consume all
cursor pages for that window before advancing your checkpoint. The contract
does not promise a publication cadence, so choose your polling interval based
on how quickly your team needs to review new funding events.
For a push-based external source that writes event rows into Deepline, use a
Monitor. This funding endpoint remains a pull-only read
feed.