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

# Get BINs



## OpenAPI

````yaml get /accounts/{account_id}/bins
openapi: 3.0.0
info:
  title: FinUp Wallet
  description: API Documentation for Finup
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /accounts/{account_id}/bins:
    get:
      tags:
        - Account
      summary: Get Card Types by Account
      operationId: AccountController_getCardTypes
      parameters:
        - name: account_id
          required: true
          in: path
          description: Id of account
          schema:
            type: string
      responses:
        '201':
          description: Resource created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: 6705952d3ec949063b9241a0
                        status:
                          type: string
                          example: Active
                        BIN:
                          type: string
                          example: '505849'
                        category:
                          type: string
                          example: Platinum || Universal
                        currency:
                          type: string
                          example: USD
                        3ds:
                          type: boolean
                          example: true
                        digital_wallet:
                          type: boolean
                          example: true
                        address:
                          type: string
                          example: 1234 Elm St, San Francisco, CA, 94016, US
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 401
                  error_message:
                    type: string
                    example: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 403
                  error_message:
                    type: object
                    properties:
                      result:
                        type: object
                        properties:
                          message:
                            type: string
                            example: Account has cards with negative balance
                          cards:
                            type: array
                            items:
                              type: string
                            example:
                              - 67b312e30a4c3db1b01a36e4
                              - 67b312e30a4c3db1b01a36e2

````