Nasdaq · Capability

Nasdaq Data Link API — Databases

Nasdaq Data Link API — Databases. 2 operations. Lead operation: Retrieve metadata for a database. Self-contained Naftiko capability covering one Nasdaq Omx Group business surface.

Run with Naftiko Nasdaq Omx GroupDatabases

What You Can Do

GET
Getdatabasemetadata — Retrieve metadata for a database
/v1/databases/{database-code-format}
GET
Downloaddatabasedata — Download all (or partial) data for a premium database
/v1/databases/{database-code}/data

MCP Tools

retrieve-metadata-database

Retrieve metadata for a database

read-only idempotent
download-all-partial-data-premium

Download all (or partial) data for a premium database

read-only idempotent

Capability Spec

nasdaq-omx-group-databases.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nasdaq Data Link API — Databases
  description: 'Nasdaq Data Link API — Databases. 2 operations. Lead operation: Retrieve metadata for a database. Self-contained
    Naftiko capability covering one Nasdaq Omx Group business surface.'
  tags:
  - Nasdaq Omx Group
  - Databases
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NASDAQ_OMX_GROUP_API_KEY: NASDAQ_OMX_GROUP_API_KEY
capability:
  consumes:
  - type: http
    namespace: nasdaq-omx-group-databases
    baseUri: https://data.nasdaq.com/api/v3
    description: Nasdaq Data Link API — Databases business capability. Self-contained, no shared references.
    resources:
    - name: databases-database_code}.{format
      path: /databases/{database_code}.{format}
      operations:
      - name: getdatabasemetadata
        method: GET
        description: Retrieve metadata for a database
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: databases-database_code-data
      path: /databases/{database_code}/data
      operations:
      - name: downloaddatabasedata
        method: GET
        description: Download all (or partial) data for a premium database
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: download_type
          in: query
          type: string
          description: Download the full database or only the latest observations.
    authentication:
      type: apikey
      key: api_key
      value: '{{env.NASDAQ_OMX_GROUP_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: nasdaq-omx-group-databases-rest
    port: 8080
    description: REST adapter for Nasdaq Data Link API — Databases. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/databases/{database-code-format}
      name: databases-database-code-format
      description: REST surface for databases-database_code}.{format.
      operations:
      - method: GET
        name: getdatabasemetadata
        description: Retrieve metadata for a database
        call: nasdaq-omx-group-databases.getdatabasemetadata
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/databases/{database-code}/data
      name: databases-database-code-data
      description: REST surface for databases-database_code-data.
      operations:
      - method: GET
        name: downloaddatabasedata
        description: Download all (or partial) data for a premium database
        call: nasdaq-omx-group-databases.downloaddatabasedata
        with:
          download_type: rest.download_type
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: nasdaq-omx-group-databases-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nasdaq Data Link API — Databases. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: retrieve-metadata-database
      description: Retrieve metadata for a database
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: nasdaq-omx-group-databases.getdatabasemetadata
      outputParameters:
      - type: object
        mapping: $.
    - name: download-all-partial-data-premium
      description: Download all (or partial) data for a premium database
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: nasdaq-omx-group-databases.downloaddatabasedata
      with:
        download_type: tools.download_type
      outputParameters:
      - type: object
        mapping: $.