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

# Ticker metadata

> Per-symbol trading parameters. Public endpoint, no authentication required.



## OpenAPI

````yaml GET /ticker/metadata
openapi: 3.1.0
info:
  title: DojiFunded Trading API
  description: >-
    Public REST interface for algorithmic trading on DojiFunded. Place orders,
    manage positions, and pull account state programmatically.
  version: 1.0.0
  contact:
    email: business@dojifunded.com
servers:
  - url: https://engine.dojifunded.com/v1
    description: Production
security:
  - apiKey: []
    apiSecret: []
tags:
  - name: Accounts
    description: Account state, positions, history, risk, and analytics.
  - name: Orders
    description: Place, cancel, and close orders across all venues.
  - name: Market data
    description: Public price feeds and symbol catalog. No authentication required.
paths:
  /ticker/metadata:
    get:
      tags:
        - Market data
      summary: Ticker metadata
      description: >-
        Per-symbol trading parameters. Public endpoint, no authentication
        required.
      operationId: getTickerMetadata
      parameters:
        - name: ticker
          in: query
          required: true
          description: >-
            Symbol to look up. Fuzzy matching accepted: `BTCUSD`, `BTC/USD`, and
            `btc-usd` all resolve.
          schema:
            type: string
            example: BTC-USD
        - name: type
          in: query
          description: >-
            Asset class hint: `crypto`, `equity`, etc. Helps disambiguation when
            the same ticker exists across classes.
          schema:
            type: string
            example: crypto
      responses:
        '200':
          description: Per-symbol trading parameters.
          content:
            application/json:
              schema:
                type: object
                properties:
                  tick_size:
                    type: number
                    description: Minimum price increment.
                  lot_size:
                    type: number
                    description: Minimum quantity increment.
                  max_leverage:
                    type: number
                    description: Maximum leverage allowed for this symbol.
                  funding_cadence:
                    type: string
                    description: Funding interval (e.g. `8h`).
        '404':
          $ref: '#/components/responses/NotFound'
      security: []
components:
  responses:
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: not_found
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key generated at Dashboard, Settings, Developer. Format:
        `doji_ak_...`
    apiSecret:
      type: apiKey
      in: header
      name: X-API-Secret
      description: 'API secret returned once at key creation. Format: `doji_sk_...`'

````