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

# Get Instrument Profile

> Return reference profile + statistics for a tradable instrument.

- 404 if `symbol` is unknown to broker_instruments.
- 200 with all-null fields if the symbol exists but the fetcher
  hasn't reached it yet (lets the frontend distinguish "not yet"
  from "no such symbol").
- 200 with the full payload otherwise. `address` is pre-merged from
  address_line1 + address_line2.



## OpenAPI

````yaml /openapi.json get /instruments/{symbol}/profile
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /instruments/{symbol}/profile:
    get:
      tags:
        - Instruments & Groups
      summary: Get Instrument Profile
      description: |-
        Return reference profile + statistics for a tradable instrument.

        - 404 if `symbol` is unknown to broker_instruments.
        - 200 with all-null fields if the symbol exists but the fetcher
          hasn't reached it yet (lets the frontend distinguish "not yet"
          from "no such symbol").
        - 200 with the full payload otherwise. `address` is pre-merged from
          address_line1 + address_line2.
      operationId: get_instrument_profile_instruments__symbol__profile_get
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstrumentProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    InstrumentProfileResponse:
      properties:
        asset_class:
          anyOf:
            - type: string
            - type: 'null'
          title: Asset Class
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        exchange:
          anyOf:
            - type: string
            - type: 'null'
          title: Exchange
        sector:
          anyOf:
            - type: string
            - type: 'null'
          title: Sector
        industry:
          anyOf:
            - type: string
            - type: 'null'
          title: Industry
        employees:
          anyOf:
            - type: integer
            - type: 'null'
          title: Employees
        website:
          anyOf:
            - type: string
            - type: 'null'
          title: Website
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        ceo:
          anyOf:
            - type: string
            - type: 'null'
          title: Ceo
        address:
          anyOf:
            - type: string
            - type: 'null'
          title: Address
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
        state:
          anyOf:
            - type: string
            - type: 'null'
          title: State
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
        statistics:
          anyOf:
            - $ref: '#/components/schemas/InstrumentStatisticsResponse'
            - type: 'null'
        profile_fetched_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Profile Fetched At
        statistics_fetched_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Statistics Fetched At
      type: object
      title: InstrumentProfileResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    InstrumentStatisticsResponse:
      properties:
        market_cap:
          anyOf:
            - type: string
            - type: 'null'
          title: Market Cap
        pe_ratio_ttm:
          anyOf:
            - type: string
            - type: 'null'
          title: Pe Ratio Ttm
        eps_ttm:
          anyOf:
            - type: string
            - type: 'null'
          title: Eps Ttm
        dividend_yield:
          anyOf:
            - type: string
            - type: 'null'
          title: Dividend Yield
        week52_low:
          anyOf:
            - type: string
            - type: 'null'
          title: Week52 Low
        week52_high:
          anyOf:
            - type: string
            - type: 'null'
          title: Week52 High
        beta:
          anyOf:
            - type: string
            - type: 'null'
          title: Beta
      type: object
      title: InstrumentStatisticsResponse
    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

````