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

# Retrieve a Static QR Code

> Use this endpoint to retrieve detailed information about a specific
static Pix BR Code.



## OpenAPI

````yaml /en/openapi/v3-current/indirect-pix.yaml get /v1/brcode/static/{brcode_id}
openapi: 3.0.3
info:
  title: Plugin BR Pix Indirect - Complete API
  description: |
    Complete API for Brazilian Pix instant payment system including
    Pix key dictionary operations, QR code generation/decoding, transactions and
    transaction limits.
  version: 1.0.0
servers:
  - url: https://plugin-pix-indirect.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/brcode/static/{brcode_id}:
    get:
      tags:
        - QR Codes API
      summary: Retrieve a Static QR Code
      description: |-
        Use this endpoint to retrieve detailed information about a specific
        static Pix BR Code.
      parameters:
        - $ref: '#/components/parameters/BrcodeId'
      responses:
        '200':
          description: Static QR Code details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticBRCodeOutput'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
              examples:
                ErrorPIX0001:
                  $ref: '#/components/examples/ErrorPIX0001'
                ErrorPIX0008:
                  $ref: '#/components/examples/ErrorPIX0008'
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
              examples:
                ErrorPIX0318:
                  $ref: '#/components/examples/ErrorPIX0318'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
              examples:
                ErrorPIX0000:
                  $ref: '#/components/examples/ErrorPIX0000'
      deprecated: false
      security:
        - bearerAuth: []
components:
  parameters:
    BrcodeId:
      name: brcode_id
      in: path
      description: Static BR Code identifier.
      required: true
      example: 019c96a0-0bf7-7060-8f39-1bfbcb9168ca
      schema:
        type: string
  schemas:
    StaticBRCodeOutput:
      type: object
      properties:
        id:
          type: string
          description: QR Code unique identifier.
          example: 019c96a0-0bf7-7060-8f39-1bfbcb9168ca
        emv:
          type: string
          description: EMV QR Code payload.
          example: 00020126580014br.gov.bcb.pix...
        base64:
          type: string
          description: Base64 encoded QR Code image (if requested).
        receiverKey:
          type: string
          description: Pix key.
          example: '+5511999999999'
        amount:
          type: string
          description: Fixed amount (if set).
          example: '100.00'
        description:
          type: string
          description: Description.
          example: 'Payment for order #12345'
        createdAt:
          type: string
          format: date-time
          example: '2024-01-15T10:30:00Z'
    ErrorFormat:
      type: object
      description: The response message error.
      required:
        - code
        - title
        - message
      properties:
        code:
          type: string
          description: A unique, stable identifier for the error.
        title:
          type: string
          description: A brief summary of the issue.
        message:
          type: string
          description: Detailed guidance for resolving the error.
  examples:
    ErrorPIX0001:
      summary: Missing Headers in Request
      value:
        code: PIX-0001
        title: Missing Headers in Request
        message: >-
          Your request is missing one or more required header params. Please
          refer to the documentation to ensure all necessary header params are
          included in your request.
    ErrorPIX0008:
      summary: Invalid Path Parameter in Request
      value:
        code: PIX-0008
        title: Invalid Path Parameter in Request
        message: >-
          One or more path parameters are invalid. Please refer to the
          documentation to verify the expected format and allowed values for
          each path parameter.
    ErrorPIX0318:
      summary: BR Code Not Found
      value:
        code: PIX-0318
        title: BR Code Not Found
        message: The requested BR Code was not found.
    ErrorPIX0000:
      summary: Internal Server Error
      value:
        code: PIX-0000
        title: Internal Server Error
        message: The server encountered an unexpected error. Please try again later.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````