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

# Get Token Metadata Profile by Symbol

> **Feature Overview**
[OpenAPI JSON Spec](/docs/output/v1_crypto_detail_get.json)
Get metadata profile for a specific token by its symbol, including name, category, description, logo, contract addresses, and official URLs.

**Response Data Description**

| Field | Type | Description | Example |
|-------|------|-------------|---------|
| symbol | string | Token symbol | "BTC" |
| name | string | Full token name | "Bitcoin" |
| category | string | Token category | "coin" |
| description | string | Token description | "Bitcoin is..." |
| logo | string | Token logo URL | "https://..." |
| contracts | array | Contract addresses per chain | [{chain:"ETH", address:"0x..."}] |
| urls | object | Official URLs (website, twitter, reddit, explorer, etc.) | |

**Usage Examples**

1. **Get BTC metadata**: `?symbol=BTC`
2. **Get ETH metadata**: `?symbol=ETH`

**Important Notes**

- Symbol parameter is required (cannot be empty)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/crypto/detail
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Welcome to Arrays!


    Arrays is a unified financial data layer for both financial institutions and
    retail users, delivering comprehensive market data across crypto and equity
    markets. Our datasets cover fundamentals, ETFs, options, crypto, and more.


    Visit [arrays.org](https://arrays.org) to request an API key and start your
    free trial. You can explore our full API offerings in the documentation
    below.


    For any questions regarding APIs or pricing, please contact
    support@arrays.org.
  title: Arrays API
  version: '1.0'
servers:
  - url: https://data-tools.prd.arrays.org/api
security: []
paths:
  /v1/crypto/detail:
    get:
      tags:
        - Crypto
      summary: Get Token Metadata Profile by Symbol
      description: >-
        **Feature Overview**

        [OpenAPI JSON Spec](/docs/output/v1_crypto_detail_get.json)

        Get metadata profile for a specific token by its symbol, including name,
        category, description, logo, contract addresses, and official URLs.


        **Response Data Description**


        | Field | Type | Description | Example |

        |-------|------|-------------|---------|

        | symbol | string | Token symbol | "BTC" |

        | name | string | Full token name | "Bitcoin" |

        | category | string | Token category | "coin" |

        | description | string | Token description | "Bitcoin is..." |

        | logo | string | Token logo URL | "https://..." |

        | contracts | array | Contract addresses per chain | [{chain:"ETH",
        address:"0x..."}] |

        | urls | object | Official URLs (website, twitter, reddit, explorer,
        etc.) | |


        **Usage Examples**


        1. **Get BTC metadata**: `?symbol=BTC`

        2. **Get ETH metadata**: `?symbol=ETH`


        **Important Notes**


        - Symbol parameter is required (cannot be empty)
      parameters:
        - description: Token symbol
          in: query
          name: symbol
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        items:
                          $ref: '#/components/schemas/model.TokenProfile'
                        type: array
                    type: object
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
        '404':
          description: Token not found
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
      security:
        - ApiKeyAuth: []
components:
  schemas:
    model.APIResponse:
      properties:
        data: {}
        error:
          $ref: '#/components/schemas/model.APIError'
        metadata: {}
        pagination: {}
        request_id:
          type: string
        success:
          type: boolean
      type: object
    model.TokenProfile:
      properties:
        category:
          type: string
        contracts:
          items:
            $ref: '#/components/schemas/model.TokenContract'
          type: array
        description:
          type: string
        logo:
          type: string
        name:
          type: string
        symbol:
          type: string
        urls:
          $ref: '#/components/schemas/model.TokenURLs'
      type: object
    model.APIError:
      properties:
        code:
          example: RESOURCE_NOT_FOUND
          type: string
        details:
          items:
            $ref: '#/components/schemas/model.APIErrorDetail'
          type: array
        docs_url:
          type: string
        examples:
          items:
            type: string
          type: array
        hint:
          type: string
        message:
          example: The requested resource was not found.
          type: string
        suggestions:
          items:
            type: string
          type: array
      type: object
    model.TokenContract:
      properties:
        address:
          type: string
        chain:
          type: string
      type: object
    model.TokenURLs:
      properties:
        explorer:
          items:
            type: string
          type: array
        reddit:
          items:
            type: string
          type: array
        technical_doc:
          items:
            type: string
          type: array
        twitter:
          items:
            type: string
          type: array
        website:
          items:
            type: string
          type: array
      type: object
    model.APIErrorDetail:
      properties:
        field:
          type: string
        got:
          type: string
        reason:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'API Key authentication. Example: "your-api-key-here"'
      in: header
      name: X-API-Key
      type: apiKey

````