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

# Get vIBAN

> Get a specific vIBAN by ID



## OpenAPI

````yaml get /api/v1/account/users/{uid}/accounts/{aid}/virtual-ibans/{vibanId}
openapi: 3.0.1
info:
  title: RALIO API
  description: Banking as a service API.
  contact:
    name: Tropipay Support
    url: https://help.tropipay.com/contacto/
    email: support@tropipay.com
  version: '1.0'
servers:
  - url: https://sandbox-revo-api.raliopay.com/
security: []
paths:
  /api/v1/account/users/{uid}/accounts/{aid}/virtual-ibans/{vibanId}:
    get:
      tags:
        - account-vibans
      summary: Get vIBAN
      description: Get a specific vIBAN by ID
      parameters:
        - name: uid
          in: path
          description: User ID
          required: true
          schema:
            type: string
        - name: aid
          in: path
          description: Account ID
          required: true
          schema:
            type: string
        - name: vibanId
          in: path
          description: vIBAN ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/dto.VirtualIBANResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    dto.VirtualIBANResponse:
      type: object
      properties:
        abaRoutingCode:
          type: string
          example: '021000021'
        accountHolder:
          type: string
          example: Revo Pay Inc.
        accountId:
          type: string
          example: 4c2b8e5d-1f6a-4e7c-9d3b-2a8f5c1e9b4d
        accountNumber:
          type: string
          example: DE89370400440532013000
        bankName:
          type: string
          example: Commerzbank AG
        bic:
          type: string
          example: COBADEFFXXX
        createdAt:
          type: string
          example: '2026-05-10T12:34:56.789Z'
        id:
          type: string
          example: 7a1f3c5b-2d8e-4f0a-9b6c-1e3d4f5a6b7c
        name:
          type: string
          example: vIBAN Alex
        rail:
          type: string
          example: SEPA
        state:
          type: string
          example: ACTIVE
          enum:
            - PENDING
            - ACTIVE
            - REJECTED
            - INACTIVE
            - IN_PROGRESS
        updatedAt:
          type: string
          example: '2026-05-10T12:34:56.789Z'
    httperror.ErrResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/httperror.ErrorData'
    httperror.ErrorData:
      type: object
      properties:
        code:
          $ref: '#/components/schemas/httperror.ErrorCode'
        details:
          type: array
          items:
            $ref: '#/components/schemas/httperror.ErrorDetails'
        message:
          type: string
        type:
          $ref: '#/components/schemas/httperror.ErrorType'
    httperror.ErrorCode:
      type: string
      enum:
        - INVALID_REQUEST
        - UNAUTHORIZED
        - FORBIDDEN
        - NOT_FOUND
        - INTERNAL_SERVER_ERROR
        - UNKNOWN_ERROR
        - NOT_IMPLEMENTED
        - TOO_MANY_REQUESTS
      x-enum-varnames:
        - InvalidRequestCode
        - UnauthorizedCode
        - ForbiddenCode
        - NotFoundCode
        - InternalServerCode
        - UnknownErrorCode
        - NotImplementedCode
        - TooManyRequestsCode
    httperror.ErrorDetails:
      type: object
      properties:
        field:
          type: string
        message:
          type: string
    httperror.ErrorType:
      type: string
      enum:
        - VALIDATION_ERROR
        - CONFLICT_ERROR
        - UNPROCESSABLE_ERROR
        - AUTHENTICATION_ERROR
        - AUTHORIZATION_ERROR
        - NOT_FOUND_ERROR
        - INTERNAL_ERROR
        - NOT_IMPLEMENTED_ERROR
        - UNKNOWN_ERROR
        - RATE_LIMIT_ERROR
      x-enum-varnames:
        - ValidationError
        - ConflictError
        - UnprocessableError
        - AuthenticationError
        - AuthorizationError
        - NotFoundError
        - InternalError
        - NotImplementedError
        - UnknownError
        - RateLimitError
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Key for accessing management endpoints
      x-mint-auth-type: bearer

````