View as Markdown
Nasdaq Data Link (Time Series and Table data) icon

Nasdaq Data Link (Time Series and Table data) ACTION

Get Table Data

Retrieves data from a specific Nasdaq Data Link table with automatic pagination. Supports filtering by columns and rows. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Nasdaq Data Link (Time Series and Table data) account once, then configure and run Get Table Data from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "nasdaq_data_link_time_series_and_table_data_-get-table-data",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    nasdaq_data_link_time_series_and_table_data_: { authProvisionId: "apn_xxxxxxx" },
    publisher: "Publisher Code",
    table: "Table Code",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Table Data inputs
Property Type Description
publisher Publisher Code string
The publisher code (e.g., MER, ETFG, AR, NDAQ). This is the first part of the datatable code. If the code is MER/F1, then MER is the publisher code and F1 is the table code.
Required
table Table Code string
The table code (e.g., F1, FUND, MWCS, RTAT10). This is the second part of the datatable code. If the code is MER/F1, then F1 is the table code.
Required
columns Columns string[]
Request data from specific columns. If you want to query for multiple columns, include the column names as array items
Optional Dynamic
filters Row Filters object
Filter rows based on column values. Use column names as keys and values to filter by. For example: { "ticker": "SPY", "date": "2024-01-01" }. Only filterable columns can be used (check table metadata).
Optional
filterOperators Filter Operators object
Apply operators to filters. Format: { "column.operator": "value" }. Available operators: .gt (greater than), .lt (less than), .gte (greater than or equal), .lte (less than or equal). Example: { "date.gte": "2024-01-01", "date.lte": "2024-12-31" }
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
nasdaq_data_link_time_series_and_table_data_-get-table-data
Version
0.0.3
App
Nasdaq Data Link (Time Series and Table data)
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes