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

# Get asset



## OpenAPI

````yaml /stocks/api-reference/openapi.json get /assets/{symbol}
openapi: 3.1.0
info:
  contact:
    email: support@daya.co
    name: API Support
  description: >-
    Public developer API for the Stocks by Daya product. X-API-Key
    authenticated. Market data, portfolio, balances, activity, order placement,
    and fiat withdrawals. All responses use the standard envelope: { success,
    message?, data?, error?, timestamp }.
  title: Daya Stocks Public API
  version: 1.0.0
servers:
  - url: https://api.daya.co/stocks/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /assets/{symbol}:
    get:
      tags:
        - stocks-market-data
      summary: Get asset
      operationId: getAssetsBysymbol
      parameters:
        - description: Display symbol (e.g. AAPL)
          in: path
          name: symbol
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                  - $ref: >-
                      #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.Envelope
                  - properties:
                      data:
                        $ref: >-
                          #/components/schemas/internal_publicapi_v1.PublicAssetDetail
                    type: object
          description: Asset detail
        '400':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.Envelope
          description: symbol required
        '404':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.Envelope
          description: Asset not available yet
        '500':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.Envelope
          description: Failed to load asset
components:
  schemas:
    github_com_dayacoins_daya-stocks-service_pkg_response.Envelope:
      properties:
        data: {}
        error:
          $ref: >-
            #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.ErrorData
        message:
          description: Message is an optional banner/toast string.
          type: string
        success:
          type: boolean
        timestamp:
          type: string
      type: object
    internal_publicapi_v1.PublicAssetDetail:
      properties:
        about_text:
          example: >-
            Apple Inc. designs, manufactures, and markets smartphones, personal
            computers, tablets, wearables, and accessories worldwide.
          type: string
        category:
          enum:
            - stock
            - etf
            - metal
            - pre_ipo
          example: stock
          type: string
        change_24h_pct:
          example: '1.25'
          type: string
        change_24h_usd:
          example: '2.34'
          type: string
        customer_risk_level:
          example: low
          type: string
        dividend_policy:
          example: Dividends are reflected in the token price.
          type: string
        economic_exposure_only:
          example: true
          type: boolean
        is_market_open:
          example: true
          type: boolean
        is_new:
          example: false
          type: boolean
        is_off_hours_eligible:
          example: true
          type: boolean
        is_off_hours_open:
          example: false
          type: boolean
        issuer_entity:
          example: Backed Finance AG
          type: string
        legal_form:
          example: tokenized security
          type: string
        logo_url:
          example: https://cdn.daya.co/logos/aapl.png
          type: string
        market_status:
          enum:
            - open
            - regular
            - premarket
            - postmarket
            - overnight
            - closed
            - paused
            - off_hours
          example: open
          type: string
        max_order_usd:
          example: '50000.00'
          type: string
        min_order_usd:
          example: '1.00'
          type: string
        name:
          example: Apple Inc.
          type: string
        next_close_at:
          example: '2026-01-15T21:00:00Z'
          type: string
        next_open_at:
          example: '2026-01-16T14:30:00Z'
          type: string
        ownership_rights:
          example: none
          type: string
        price_precision:
          example: 2
          type: integer
        price_usd:
          example: '189.50'
          type: string
        shareholder_rights_disclosure:
          example: Holders do not receive shareholder rights in the underlying company.
          type: string
        status:
          enum:
            - enabled
            - disabled
            - paused
            - closing_only
            - unavailable
            - migrated
            - delisted
          example: enabled
          type: string
        subtitle:
          example: Technology
          type: string
        symbol:
          example: AAPL
          type: string
        underlying_exchange:
          example: NASDAQ
          type: string
        underlying_reference_url:
          example: https://www.nasdaq.com/market-activity/stocks/aapl
          type: string
        underlying_ticker:
          example: AAPL
          type: string
        voting_rights:
          example: none
          type: string
      type: object
    github_com_dayacoins_daya-stocks-service_pkg_response.ErrorData:
      properties:
        code:
          type: string
        details: {}
        fields:
          additionalProperties:
            type: string
          type: object
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Daya API key, sent in the X-API-Key header. Issue and scope keys in
        the Daya dashboard.
      in: header
      name: X-API-Key
      type: apiKey

````