Databento Metadata API

Discovery and cost-estimation endpoints for the historical catalog. List publishers, datasets, schemas, and fields; look up per-dataset date ranges and data-quality conditions; and pre-compute the record count, billable size, and dollar cost of a query before you run it. Essential for planning research and controlling spend on financial and reference data.

Operations 23

GET /metadata.list_publishers List publishers #
GET /metadata.list_datasets List datasets #
GET /metadata.list_schemas List schemas #
GET /metadata.list_fields List fields #
GET /metadata.list_unit_prices List unit prices #
GET /metadata.get_dataset_condition Get dataset condition #
GET /metadata.get_dataset_range Get dataset range #
GET /metadata.get_record_count Get record count #
GET /metadata.get_billable_size Get billable size #
GET /metadata.get_cost Get cost #
GET /v0/metadata.list_publishers List Publishers #
GET /v0/metadata.list_datasets List Available Datasets #
GET /v0/metadata.list_schemas List Available Schemas #
GET /v0/metadata.list_fields List Available Fields #
GET /v0/metadata.list_unit_prices List Unit Prices #
GET /v0/metadata.get_dataset_range Get Dataset Range #
GET /v0/metadata.get_dataset_condition Get Dataset Condition #
POST /v0/metadata.get_record_count Post Get Record Count #
GET /v0/metadata.get_record_count Get Record Count #
POST /v0/metadata.get_billable_size Post Get Billable Size #
GET /v0/metadata.get_billable_size Get Billable Size #
POST /v0/metadata.get_cost Post Get Cost #
GET /v0/metadata.get_cost Get Cost #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/databento-metadata-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

databento-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Databento Metadata API
  version: '1.0'
  description: 'Operations tagged Metadata across 2 of this provider''s published API definitions: databento-metadata-api-openapi.yml, databento-platform-openapi-official.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://hist.databento.com/v0
  description: Databento Historical and Reference HTTP API
tags:
- name: Metadata
  description: Catalog discovery, dataset ranges and conditions, and cost estimation.
paths:
  /metadata.list_publishers:
    get:
      operationId: listPublishers
      tags:
      - Metadata
      summary: List publishers
      description: Lists all publishers and their details.
      responses:
        '200':
          description: A list of publishers.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.list_datasets:
    get:
      operationId: listDatasets
      tags:
      - Metadata
      summary: List datasets
      description: Lists all available dataset codes, optionally filtered by an available date range.
      parameters:
      - name: start_date
        in: query
        schema:
          type: string
          format: date
      - name: end_date
        in: query
        schema:
          type: string
          format: date
      responses:
        '200':
          description: A list of dataset codes.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.list_schemas:
    get:
      operationId: listSchemas
      tags:
      - Metadata
      summary: List schemas
      description: Lists all data record schemas available for a dataset.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A list of schema names.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.list_fields:
    get:
      operationId: listFields
      tags:
      - Metadata
      summary: List fields
      description: Lists the fields of a record schema for a given encoding.
      parameters:
      - name: schema
        in: query
        required: true
        schema:
          type: string
      - name: encoding
        in: query
        schema:
          type: string
          enum:
          - dbn
          - csv
          - json
      responses:
        '200':
          description: A list of fields with names and types.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.list_unit_prices:
    get:
      operationId: listUnitPrices
      tags:
      - Metadata
      summary: List unit prices
      description: Lists the per-unit prices for each data schema and feed mode of a dataset.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Unit prices per schema and mode.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.get_dataset_condition:
    get:
      operationId: getDatasetCondition
      tags:
      - Metadata
      summary: Get dataset condition
      description: Returns the data-quality condition (available, degraded, pending, missing) per day for a dataset and date range.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      - name: start_date
        in: query
        schema:
          type: string
          format: date
      - name: end_date
        in: query
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Per-day condition entries.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.get_dataset_range:
    get:
      operationId: getDatasetRange
      tags:
      - Metadata
      summary: Get dataset range
      description: Returns the earliest and latest available datetime for a dataset.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The available start and end range for the dataset.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.get_record_count:
    get:
      operationId: getRecordCount
      tags:
      - Metadata
      summary: Get record count
      description: Returns the number of records a timeseries query would return, without streaming the data.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      - name: symbols
        in: query
        schema:
          type: string
      - name: schema
        in: query
        schema:
          type: string
      - name: start
        in: query
        schema:
          type: string
      - name: end
        in: query
        schema:
          type: string
      responses:
        '200':
          description: The record count for the query.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.get_billable_size:
    get:
      operationId: getBillableSize
      tags:
      - Metadata
      summary: Get billable size
      description: Returns the uncompressed binary size in bytes that a timeseries query would bill.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      - name: symbols
        in: query
        schema:
          type: string
      - name: schema
        in: query
        schema:
          type: string
      - name: start
        in: query
        schema:
          type: string
      - name: end
        in: query
        schema:
          type: string
      responses:
        '200':
          description: The billable size in bytes.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /metadata.get_cost:
    get:
      operationId: getCost
      tags:
      - Metadata
      summary: Get cost
      description: Returns the estimated US dollar cost of a timeseries query before running it.
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
      - name: symbols
        in: query
        schema:
          type: string
      - name: schema
        in: query
        schema:
          type: string
      - name: start
        in: query
        schema:
          type: string
      - name: end
        in: query
        schema:
          type: string
      - name: mode
        in: query
        schema:
          type: string
          enum:
          - historical
          - historical-streaming
          - live
      responses:
        '200':
          description: The estimated cost in US dollars.
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - apiKeyBasicAuth: []
    servers:
    - url: https://hist.databento.com/v0
      description: Databento Historical and Reference HTTP API
  /v0/metadata.list_publishers:
    get:
      tags:
      - Metadata
      summary: List Publishers
      operationId: list_publishers_v0_metadata_list_publishers_get
      security:
      - HTTPBasic: []
      parameters:
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v0/metadata.list_datasets:
    get:
      tags:
      - Metadata
      summary: List Available Datasets
      operationId: list_available_datasets_v0_metadata_list_datasets_get
      security:
      - HTTPBasic: []
      parameters:
      - name: start_date
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Start Date
      - name: end_date
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: End Date
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v0/metadata.list_schemas:
    get:
      tags:
      - Metadata
      summary: List Available Schemas
      operationId: list_available_schemas_v0_metadata_list_schemas_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v0/metadata.list_fields:
    get:
      tags:
      - Metadata
      summary: List Available Fields
      operationId: list_available_fields_v0_metadata_list_fields_get
      security:
      - HTTPBasic: []
      parameters:
      - name: schema
        in: query
        required: true
        schema:
          type: string
          title: Schema
      - name: encoding
        in: query
        required: true
        schema:
          type: string
          title: Encoding
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v0/metadata.list_unit_prices:
    get:
      tags:
      - Metadata
      summary: List Unit Prices
      operationId: list_unit_prices_v0_metadata_list_unit_prices_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
  /v0/metadata.get_dataset_range:
    get:
      tags:
      - Metadata
      summary: Get Dataset Range
      operationId: get_dataset_range_v0_metadata_get_dataset_range_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
  /v0/metadata.get_dataset_condition:
    get:
      tags:
      - Metadata
      summary: Get Dataset Condition
      operationId: get_dataset_condition_v0_metadata_get_dataset_condition_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: start_date
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Start Date
      - name: end_date
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: End Date
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
  /v0/metadata.get_record_count:
    post:
      tags:
      - Metadata
      summary: Post Get Record Count
      operationId: post_get_record_count_v0_metadata_get_record_count_post
      security:
      - HTTPBasic: []
      parameters:
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_post_get_record_count_v0_metadata_get_record_count_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
    get:
      tags:
      - Metadata
      summary: Get Record Count
      operationId: get_record_count_v0_metadata_get_record_count_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: start
        in: query
        required: true
        schema:
          type: string
          title: Start
      - name: end
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: End
      - name: symbols
        in: query
        required: false
        schema:
          type: string
          default: ALL_SYMBOLS
          title: Symbols
      - name: schema
        in: query
        required: false
        schema:
          type: string
          default: trades
          title: Schema
      - name: stype_in
        in: query
        required: false
        schema:
          type: string
          default: raw_symbol
          title: Stype In
      - name: symbol
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Symbol
      - name: limit
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
            maximum: 18446744073709551615
            exclusiveMinimum: 0
          - type: 'null'
          title: Limit
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
  /v0/metadata.get_billable_size:
    post:
      tags:
      - Metadata
      summary: Post Get Billable Size
      operationId: post_get_billable_size_v0_metadata_get_billable_size_post
      security:
      - HTTPBasic: []
      parameters:
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_post_get_billable_size_v0_metadata_get_billable_size_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
    get:
      tags:
      - Metadata
      summary: Get Billable Size
      operationId: get_billable_size_v0_metadata_get_billable_size_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: start
        in: query
        required: true
        schema:
          type: string
          title: Start
      - name: end
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: End
      - name: symbols
        in: query
        required: false
        schema:
          type: string
          default: ALL_SYMBOLS
          title: Symbols
      - name: schema
        in: query
        required: false
        schema:
          type: string
          default: trades
          title: Schema
      - name: stype_in
        in: query
        required: false
        schema:
          type: string
          default: raw_symbol
          title: Stype In
      - name: limit
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
            maximum: 18446744073709551615
            exclusiveMinimum: 0
          - type: 'null'
          title: Limit
      - name: symbol
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Symbol
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
  /v0/metadata.get_cost:
    post:
      tags:
      - Metadata
      summary: Post Get Cost
      operationId: post_get_cost_v0_metadata_get_cost_post
      security:
      - HTTPBasic: []
      parameters:
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_post_get_cost_v0_metadata_get_cost_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
    get:
      tags:
      - Metadata
      summary: Get Cost
      operationId: get_cost_v0_metadata_get_cost_get
      security:
      - HTTPBasic: []
      parameters:
      - name: dataset
        in: query
        required: true
        schema:
          type: string
          title: Dataset
      - name: start
        in: query
        required: true
        schema:
          type: string
          title: Start
      - name: end
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: End
      - name: symbols
        in: query
        required: false
        schema:
          type: string
          default: ALL_SYMBOLS
          title: Symbols
      - name: schema
        in: query
        required: false
        schema:
          type: string
          default: trades
          title: Schema
      - name: stype_in
        in: query
        required: false
        schema:
          type: string
          default: raw_symbol
          title: Stype In
      - name: mode
        in: query
        required: false
        schema:
          type: string
          default: historical-streaming
          title: Mode
      - name: limit
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
            maximum: 18446744073709551615
            exclusiveMinimum: 0
          - type: 'null'
          title: Limit
      - name: symbol
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Symbol
      - name: retry
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Retry
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '400':
          description: If bad or unacceptable query param
        '404':
          description: If dataset not found or no data for query
        '422':
          description: If unprocessable request
        '429':
          description: If request rate limit exceeded
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        detail:
          type: string
          description: A human-readable description of the error.
        case_id:
          type: string
          description: An identifier for the error case, useful when contacting support.
    Body_post_get_cost_v0_metadata_get_cost_post:
      properties:
        dataset:
          type: string
          title: Dataset
        start:
          type: string
          title: Start
        end:
          anyOf:
          - type: string
          - type: 'null'
          title: End
        symbols:
          type: string
          title: Symbols
          default: ALL_SYMBOLS
        schema_:
          type: string
          title: Schema
          default: trades
        stype_in:
          type: string
          title: Stype In
          default: raw_symbol
        mode:
          type: string
          title: Mode
          default: historical-streaming
        limit:
          anyOf:
          - type: integer
            maximum: 1.8446744073709552e+19
            exclusiveMinimum: 0.0
          - type: 'null'
          title: Limit
        symbol:
          anyOf:
          - type: string
          - type: 'null'
          title: Symbol
      type: object
      required:
      - dataset
      - start
      title: Body_post_get_cost_v0_metadata_get_cost_post
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Body_post_get_record_count_v0_metadata_get_record_count_post:
      properties:
        dataset:
          type: string
          title: Dataset
        start:
          type: string
          title: Start
        end:
          anyOf:
          - type: string
          - type: 'null'
          title: End
        symbols:
          type: string
          title: Symbols
          default: ALL_SYMBOLS
        schema_:
          type: string
          title: Schema
          default: trades
        stype_in:
          type: string
          title: Stype In
          default: raw_symbol
        symbol:
          anyOf:
          - type: string
          - type: 'null'
          title: Symbol
        limit:
          anyOf:
          - type: integer
            maximum: 1.8446744073709552e+19
            exclusiveMinimum: 0.0
          - type: 'null'
          title: Limit
      type: object
      required:
      - dataset
      - start
      title: Body_post_get_record_count_v0_metadata_get_record_count_post
    Body_post_get_billable_size_v0_metadata_get_billable_size_post:
      properties:
        dataset:
          type: string
          title: Dataset
        start:
          type: string
          title: Start
        end:
          anyOf:
          - type: string
          - type: 'null'
          title: End
        symbols:
          type: string
          title: Symbols
          default: ALL_SYMBOLS
        schema_:
          type: string
          title: Schema
          default: trades
        stype_in:
          type: string
          title: Stype In
          default: raw_symbol
        limit:
          anyOf:
          - type: integer
            maximum: 1.8446744073709552e+19
            exclusiveMinimum: 0.0
          - type: 'null'
          title: Limit
        symbol:
          anyOf:
          - type: string
          - type: 'null'
          title: Symbol
      type: object
      required:
      - dataset
      - start
      title: Body_post_get_billable_size_v0_metadata_get_billable_size_post
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    apiKeyBasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication. Supply your Databento API key (prefixed with db-) as the username and leave the password empty.
    OAuth2PasswordBearerWithCookie:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v0/auth/login
    HTTPBasic:
      type: http
      scheme: basic
x-refined-from:
- databento-metadata-api-openapi.yml
- databento-platform-openapi-official.json