> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Deepline Native: Get Funding Updates

> Fetching new funding-round updates directly, outside of monitor deployment. Includes SDK V2 examples, input constraints, response fields, and Deepline cost.

Fetching new funding-round updates directly, outside of monitor deployment.

<Info>
  Tool ID: `deepline_native_get_funding_updates`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'deepline_native_get_funding_updates',
  {
    "since": "2026-01-15T12:00:00Z",
    "cursor": "cursor_123",
    "limit": 100
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute deepline_native_get_funding_updates --input '{
  "since": "2026-01-15T12:00:00Z",
  "cursor": "cursor_123",
  "limit": 100
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "status": "success",
    "code": 123,
    "updates": [
      {
        "update_id": "update_123",
        "record_id": "record_123",
        "update_type": "radar_finding"
      }
    ],
    "has_more": true,
    "next_cursor": "cursor_123"
  }
}
```

Use `deepline tools get deepline_native_get_funding_updates --json` for the latest machine-readable contract.

## Input reference

Poll the Deepline funding-rounds radar feed and return new funding-round findings as JSON. Scoped to one radar (industry funding rounds); every call costs a flat \$0.10, regardless of page size. Example: \{"limit": 50} returns the 50 most recent funding-round updates. Example: \{"since": "2026-08-01T00:00:00Z"} returns only updates discovered on or after that time. Example: \{"cursor": "\<next\_cursor from a prior response>"} continues pagination.

| Name             | Type      | Required | Default | Details                                                                                                                                  |
| ---------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.since`  | `string`  | No       | —       | Optional ISO 8601 timestamp. Return only updates discovered at or after this time. Example: "2026-08-01T00:00:00Z". Format: `date-time`. |
| `payload.cursor` | `string`  | No       | —       | Optional pagination token. Pass the `next_cursor` value from a previous response to fetch the next page. Omit for the first page.        |
| `payload.limit`  | `integer` | No       | `100`   | Optional maximum number of updates to return. Range 1-100. Defaults to 100 (a full page). Example: 25. Minimum: 1. Maximum: 100.         |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Poll the Deepline funding-rounds radar feed and return new funding-round findings as JSON. Scoped to one radar (industry funding rounds); every call costs a flat $0.10, regardless of page size. Example: {\"limit\": 50} returns the 50 most recent funding-round updates. Example: {\"since\": \"2026-08-01T00:00:00Z\"} returns only updates discovered on or after that time. Example: {\"cursor\": \"<next_cursor from a prior response>\"} continues pagination.",
    "properties": {
      "since": {
        "type": "string",
        "description": "Optional ISO 8601 timestamp. Return only updates discovered at or after this time. Example: \"2026-08-01T00:00:00Z\".",
        "format": "date-time"
      },
      "cursor": {
        "type": "string",
        "description": "Optional pagination token. Pass the `next_cursor` value from a previous response to fetch the next page. Omit for the first page."
      },
      "limit": {
        "type": "integer",
        "description": "Optional maximum number of updates to return. Range 1-100. Defaults to 100 (a full page). Example: 25.",
        "default": 100,
        "minimum": 1,
        "maximum": 100
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                | Type                        | Required | Default | Details                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| --------------------------------------------------- | --------------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                                       | `object`                    | Yes      | —       | One page of the funding-rounds feed. Example: \{"status":"success","code":200,"message":"Updates retrieved successfully","updates":\[\{"update\_id":"a0dbeb25-...","record\_id":"0df88ee0-...","update\_type":"radar\_finding","discovered\_at":"2026-08-21T17:28:45Z","data":\{"domain":null,"radar\_id":"814b2e61-...","radar\_type":"industry\_funding\_rounds","custom\_fields":\{},"next\_charge\_at":null},"content":\{"round":"Series See the live schema for the complete constraint. |
| `result.data.status`                                | `"success"`                 | Yes      | —       | Allowed: `success`.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| `result.data.code`                                  | `integer`                   | Yes      | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.message`                               | `string`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates`                               | `array`                     | Yes      | —       | New funding-round updates, most recent first.                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| `result.data.updates[].update_id`                   | `string`                    | No       | —       | Unique update id.                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].record_id`                   | `string`                    | No       | —       | Id of the underlying funding-round record.                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| `result.data.updates[].update_type`                 | `"radar_finding"`           | No       | —       | Allowed: `radar_finding`.                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| `result.data.updates[].discovered_at`               | `string`                    | No       | —       | ISO 8601 timestamp this update was discovered.                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| `result.data.updates[].data`                        | `object`                    | No       | —       | Radar routing metadata for this update.                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| `result.data.updates[].data.domain`                 | `string \| null`            | No       | —       | Always null for funding-round updates; company radars use this field, industry radars do not.                                                                                                                                                                                                                                                                                                                                                                                                 |
| `result.data.updates[].data.radar_id`               | `string`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].data.radar_type`             | `"industry_funding_rounds"` | No       | —       | Allowed: `industry_funding_rounds`.                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| `result.data.updates[].data.custom_fields`          | `record`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].data.next_charge_at`         | `string \| null`            | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content`                     | `object`                    | No       | —       | The funding-round finding itself. Example: \{"round":"Series A","amount\_usd":20000000,"announced\_at":"2026-08-20","company":\{"name":"FSH Technologies","domain":"fshtechnologies.org","hq\_country":"United States","profile\_url":"[https://www.linkedin.com/company/fshtech"\&#125;,"references":\["https://fsh.org/blog/why-we-built-fsh"\]\&#125](https://www.linkedin.com/company/fshtech"\&#125;,"references":\["https://fsh.org/blog/why-we-built-fsh"]\&#125);                     |
| `result.data.updates[].content.round`               | `string`                    | No       | —       | Funding round label, e.g. "Series A", "Series C".                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content.amount_usd`          | `number`                    | No       | —       | Disclosed round size in USD.                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| `result.data.updates[].content.announced_at`        | `string`                    | No       | —       | Date the round was announced (YYYY-MM-DD).                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| `result.data.updates[].content.company`             | `object`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content.company.name`        | `string`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content.company.domain`      | `string`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content.company.hq_country`  | `string`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content.company.profile_url` | `string`                    | No       | —       | —                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.updates[].content.references`          | `array`                     | No       | —       | Source URLs backing this finding.                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| `result.data.has_more`                              | `boolean`                   | Yes      | —       | True if another page is available via `next_cursor`.                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| `result.data.next_cursor`                           | `string \| null`            | Yes      | —       | Opaque pagination token. Pass as `cursor` on the next call to continue. Null when there are no more pages.                                                                                                                                                                                                                                                                                                                                                                                    |
| `result.data.timestamp`                             | `string`                    | No       | —       | ISO 8601 response timestamp.                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| `result.meta`                                       | `object`                    | No       | —       | Additional response metadata (status, paging).                                                                                                                                                                                                                                                                                                                                                                                                                                                |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "One page of the funding-rounds feed. Example: {\"status\":\"success\",\"code\":200,\"message\":\"Updates retrieved successfully\",\"updates\":[{\"update_id\":\"a0dbeb25-...\",\"record_id\":\"0df88ee0-...\",\"update_type\":\"radar_finding\",\"discovered_at\":\"2026-08-21T17:28:45Z\",\"data\":{\"domain\":null,\"radar_id\":\"814b2e61-...\",\"radar_type\":\"industry_funding_rounds\",\"custom_fields\":{},\"next_charge_at\":null},\"content\":{\"round\":\"Series C\",\"amount_usd\":38500000,\"announced_at\":\"2026-08-21\",\"company\":{\"name\":\"Helcim\",\"domain\":\"helcim.com\",\"hq_country\":\"Canada\",\"profile_url\":\"https://www.linkedin.com/company/helcim\"},\"references\":[\"https://www.helcim.com/company/helcim-raises-series-c/\"]}}],\"has_more\":false,\"next_cursor\":null,\"timestamp\":\"2026-08-21T19:23:14Z\"}",
        "properties": {
          "status": {
            "type": "string",
            "enum": [
              "success"
            ]
          },
          "code": {
            "type": "integer"
          },
          "message": {
            "type": "string"
          },
          "updates": {
            "type": "array",
            "description": "New funding-round updates, most recent first.",
            "items": {
              "type": "object",
              "properties": {
                "update_id": {
                  "type": "string",
                  "description": "Unique update id."
                },
                "record_id": {
                  "type": "string",
                  "description": "Id of the underlying funding-round record."
                },
                "update_type": {
                  "type": "string",
                  "enum": [
                    "radar_finding"
                  ]
                },
                "discovered_at": {
                  "type": "string",
                  "description": "ISO 8601 timestamp this update was discovered."
                },
                "data": {
                  "type": "object",
                  "description": "Radar routing metadata for this update.",
                  "properties": {
                    "domain": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Always null for funding-round updates; company radars use this field, industry radars do not."
                    },
                    "radar_id": {
                      "type": "string"
                    },
                    "radar_type": {
                      "type": "string",
                      "enum": [
                        "industry_funding_rounds"
                      ]
                    },
                    "custom_fields": {
                      "type": "object",
                      "additionalProperties": true
                    },
                    "next_charge_at": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "additionalProperties": false
                },
                "content": {
                  "type": "object",
                  "description": "The funding-round finding itself. Example: {\"round\":\"Series A\",\"amount_usd\":20000000,\"announced_at\":\"2026-08-20\",\"company\":{\"name\":\"FSH Technologies\",\"domain\":\"fshtechnologies.org\",\"hq_country\":\"United States\",\"profile_url\":\"https://www.linkedin.com/company/fshtech\"},\"references\":[\"https://fsh.org/blog/why-we-built-fsh\"]}",
                  "properties": {
                    "round": {
                      "type": "string",
                      "description": "Funding round label, e.g. \"Series A\", \"Series C\"."
                    },
                    "amount_usd": {
                      "type": "number",
                      "description": "Disclosed round size in USD."
                    },
                    "announced_at": {
                      "type": "string",
                      "description": "Date the round was announced (YYYY-MM-DD)."
                    },
                    "company": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "domain": {
                          "type": "string"
                        },
                        "hq_country": {
                          "type": "string"
                        },
                        "profile_url": {
                          "type": "string"
                        }
                      },
                      "additionalProperties": false
                    },
                    "references": {
                      "type": "array",
                      "description": "Source URLs backing this finding.",
                      "items": {
                        "type": "string"
                      }
                    }
                  },
                  "additionalProperties": false
                }
              },
              "additionalProperties": false
            }
          },
          "has_more": {
            "type": "boolean",
            "description": "True if another page is available via `next_cursor`."
          },
          "next_cursor": {
            "type": [
              "string",
              "null"
            ],
            "description": "Opaque pagination token. Pass as `cursor` on the next call to continue. Null when there are no more pages."
          },
          "timestamp": {
            "type": "string",
            "description": "ISO 8601 response timestamp."
          }
        },
        "required": [
          "status",
          "code",
          "updates",
          "has_more",
          "next_cursor"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `1` per pricing unit.

## Related documentation

* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
