StockData Entities API

Entity search and metadata

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/stockdata-entities-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 email required.

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

OpenAPI Specification

stockdata-entities-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: StockData Entities API
  description: StockData.org provides free real-time, intraday, and historical stock, forex, and cryptocurrency market data along with global financial news and sentiment analysis. The API delivers market data for US-listed stocks including OHLCV data, splits, dividends, and entity-level news sentiment from 5,000+ sources in 30+ languages. All endpoints require an api_token parameter.
  version: '1.0'
  contact:
    url: https://www.stockdata.org/
  termsOfService: https://www.stockdata.org/terms
servers:
- url: https://api.stockdata.org/v1
  description: Production Server
security:
- ApiToken: []
tags:
- name: Entities
  description: Entity search and metadata
paths:
  /entity/search:
    get:
      operationId: searchEntities
      summary: Search Entities
      description: Dynamic search for financial entities (stocks, ETFs, indices, crypto, currencies) with filtering by type, industry, exchange, and country.
      tags:
      - Entities
      parameters:
      - name: api_token
        in: query
        required: true
        schema:
          type: string
        description: Your API token from the StockData dashboard.
      - name: search
        in: query
        required: false
        schema:
          type: string
        description: Search query matching entity name or symbol.
      - name: symbols
        in: query
        required: false
        schema:
          type: string
        description: Filter by comma-separated ticker symbols.
      - name: exchanges
        in: query
        required: false
        schema:
          type: string
        description: Filter by exchange codes.
      - name: types
        in: query
        required: false
        schema:
          type: string
        description: Filter by entity type (equity, etf, index, etc.).
      - name: industries
        in: query
        required: false
        schema:
          type: string
        description: Filter by industry classification.
      - name: countries
        in: query
        required: false
        schema:
          type: string
        description: Filter by country code.
      responses:
        '200':
          description: Entity search results returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntitySearchResponse'
        '401':
          description: Invalid or missing API token.
  /entity/type/list:
    get:
      operationId: listEntityTypes
      summary: List Entity Types
      description: Returns all supported entity types including equity, index, ETF, mutual fund, currency, and cryptocurrency.
      tags:
      - Entities
      parameters:
      - name: api_token
        in: query
        required: true
        schema:
          type: string
        description: Your API token from the StockData dashboard.
      responses:
        '200':
          description: Entity types list returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TypeListResponse'
        '401':
          description: Invalid or missing API token.
  /entity/industry/list:
    get:
      operationId: listIndustries
      summary: List Industries
      description: Retrieve all supported industry classifications for entity filtering.
      tags:
      - Entities
      parameters:
      - name: api_token
        in: query
        required: true
        schema:
          type: string
        description: Your API token from the StockData dashboard.
      responses:
        '200':
          description: Industry list returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IndustryListResponse'
        '401':
          description: Invalid or missing API token.
components:
  schemas:
    TypeListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: string
          description: List of supported entity type strings.
    Entity:
      type: object
      properties:
        symbol:
          type: string
          description: Entity ticker symbol.
        name:
          type: string
          description: Entity name.
        type:
          type: string
          description: Entity type (equity, etf, index, crypto, currency).
        industry:
          type: string
          description: Industry classification.
        exchange:
          type: string
          description: Exchange short code.
        exchange_long:
          type: string
          description: Exchange full name.
        mic_code:
          type: string
          description: Market identifier code.
        country:
          type: string
          description: Country code.
        currency:
          type: string
          description: Trading currency.
    Meta:
      type: object
      properties:
        found:
          type: integer
          description: Total number of records matching the query.
        returned:
          type: integer
          description: Number of records returned in this response.
        limit:
          type: integer
          description: Maximum records per page.
        page:
          type: integer
          description: Current page number.
    EntitySearchResponse:
      type: object
      properties:
        meta:
          $ref: '#/components/schemas/Meta'
        data:
          type: array
          items:
            $ref: '#/components/schemas/Entity'
    IndustryListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: string
          description: List of supported industry classification strings.
  securitySchemes:
    ApiToken:
      type: apiKey
      in: query
      name: api_token
      description: API token obtained from the StockData dashboard.