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

# Get PIX Deposit QR Code

> Returns the static PIX BR Code used to fund the account's BRL balance: the EMV payload string and a base64-encoded PNG of the QR image.



## OpenAPI

````yaml GET /api/v1/accounts/{account-id}/deposits/pix
openapi: 3.1.0
info:
  title: Crown API & Webhooks
  version: 1.0.0
  description: >-
    Open API 3 docs for Crown API


    Webhook events that Crown will POST to your configured endpoint URL. All
    webhooks expect a 200 OK response. Payloads use kebab-case for all keys to
    match the Crown API conventions.
servers:
  - url: https://app.crown-brlv.com
    description: Production server
security: []
paths:
  /api/v1/accounts/{account-id}/deposits/pix:
    get:
      summary: Get the PIX deposit QR code
      description: >-
        Returns the static PIX BR Code used to fund the account's BRL balance:
        the EMV payload string and a base64-encoded PNG of the QR image.
      parameters:
        - in: path
          name: account-id
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: PIX BR Code retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  asset:
                    type: string
                    enum:
                      - brl
                    description: Asset funded by this PIX deposit
                    example: brl
                  type:
                    type: string
                    enum:
                      - pix
                    description: Deposit type
                    example: pix
                  brcode:
                    type: string
                    description: >-
                      Static PIX BR Code (EMV payload); pay with it directly or
                      render it as a QR code
                    example: 00020126360014br.gov.bcb.pix...
                  qr-code-base64:
                    type: string
                    description: >-
                      PNG QR code of the BR Code, base64-encoded (no data-uri
                      prefix)
                    example: iVBORw0KGgoAAAANSUhEUgAAASwAAAEs...
                additionalProperties: false
                required:
                  - asset
                  - type
                  - brcode
                  - qr-code-base64
        '400':
          description: Bad request - Invalid input parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Bad request error details
                additionalProperties: false
                required:
                  - error
        '403':
          description: Forbidden - Access denied
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Forbidden access error details
                additionalProperties: false
                required:
                  - error
        '404':
          description: Not found - Resource does not exist
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Resource not found error details
                additionalProperties: false
                required:
                  - error
        '422':
          description: Unprocessable entity - Validation failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Validation error details
                additionalProperties: false
                required:
                  - error

````