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

# Get Deposit Address

> Returns a deposit address that can be used to deposit a specified token.



## OpenAPI

````yaml GET /deposit_address
openapi: 3.0.1
info:
  title: Vanish Core API
  description: API endpoints for the Vanish Core service.
  license:
    name: MIT
  version: 2.0.0
servers:
  - url: https://core-api-dev.vanish.trade
security:
  - ApiKeyAuth: []
paths:
  /deposit_address:
    get:
      description: Returns a deposit address that can be used to deposit a specified token.
      parameters:
        - name: token_address
          in: query
          required: true
          schema:
            type: string
          description: The address of the token for which a deposit address is requested.
      responses:
        '200':
          description: A successful response containing the deposit address.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDepositAddressResponse'
        '401':
          description: Unauthorized. The request is missing a valid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/responses/UnauthorizedError'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    GetDepositAddressResponse:
      required:
        - address
      type: object
      properties:
        address:
          description: The bank deposit address for the specified token.
          type: string
    Error:
      type: string
  responses:
    UnauthorizedError:
      description: API key is missing or invalid
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````