# List available assets

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/assets:
    get:
      summary: List available assets
      deprecated: false
      description: ''
      operationId: getAssets
      tags:
        - REST API/Endpoints/Assets
        - Assets
      parameters:
        - name: cursor
          in: query
          description: ''
          required: false
          example: b86c034b-efe3-11eb-b56f-0691764446a7
          schema:
            type: string
        - name: page_size
          in: query
          description: ''
          required: false
          example: 25
          schema:
            type: integer
            format: int32
            default: 25
        - name: isin
          in: query
          description: ''
          required: false
          example: US5949181045
          schema:
            type: string
        - name: type
          in: query
          description: ''
          required: false
          example: CRYPTO
          schema:
            type: string
        - name: group
          in: query
          description: ''
          required: false
          example: CRYPTOCOIN
          schema:
            type: string
        - name: symbol
          in: query
          description: ''
          required: false
          example: BTC
          schema:
            type: string
        - name: id
          in: query
          description: Comma-separated list of asset UUIDs
          required: false
          example: >-
            b86c034b-efe3-11eb-b56f-0691764446a7,1f0f13b6-8630-6a24-b2e4-859c8eda3240
          schema:
            type: array
            items:
              type: string
              format: uuid
      responses:
        '200':
          description: Paginated list of available assets
          content:
            '*/*':
              schema:
                properties:
                  data:
                    type: array
                    items:
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                        symbol:
                          type: string
                        isin:
                          type: string
                        group:
                          type: string
                        type:
                          type: string
                        buyActive:
                          type: boolean
                        sellActive:
                          type: boolean
                        withdrawalActive:
                          type: boolean
                        depositActive:
                          type: boolean
                      x-apidog-orders:
                        - id
                        - name
                        - symbol
                        - isin
                        - group
                        - type
                        - buyActive
                        - sellActive
                        - withdrawalActive
                        - depositActive
                      type: object
                  selfCursor:
                    type: string
                  nextCursor:
                    type: string
                  hasNextPage:
                    type: boolean
                x-apidog-orders:
                  - data
                  - selfCursor
                  - nextCursor
                  - hasNextPage
                type: object
          headers: {}
          x-apidog-name: OK
        '400':
          description: Invalid query parameters
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: REST API/Endpoints/Assets
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/365298/apis/api-4375772-run
components:
  schemas: {}
  securitySchemes:
    x-api-key:
      type: apikey
      name: x-api-key
      in: header
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```