AT-IVA-DP (Autoridade Tributária IVA Declarações Periódicas)

Endpoint to retrieve the list of IVA (Imposto sobre Valor Acrescentado Declaração periódica) in Autoridade Tributária.


🚧

What's New in bizAPIs 3.0

Enhanced Error Responses with bizAPIs Status Codes

bizAPIs 3.0 introduces structured error responses with dedicated bizAPIs status codes, making debugging faster and support interactions more efficient. All error responses now include detailed metadata like requestId, errorCode, and errorName to help you quickly identify and resolve issues.

Availability by Environment

EnvironmentStatus
📚 Documentation✅ Available
🧪 QUAL✅ Available
🚀 Production⏳ Coming Soon

Learn more about error handling →

Download Project

DOWNLOAD PROJECT

To watch the video click here

JSON Schema API Response

Portuguese

{
  "type" : "object",
  "properties" : {
    "RequestId" : {
      "type" : "string",
      "description" : "Identificador único do pedido."
    },
    "results" : {
      "type" : "string",
      "description" : "Número total de resultados disponíveis na consulta."
    },
    "totalPages" : {
      "type" : "integer",
      "description" : "Número total de páginas disponíveis na consulta."
    },
    "atIvaList" : {
      "type" : "array",
      "description" : "Lista de declarações de IVA detalhadas.",
      "items" : {
        "type" : "object",
        "properties" : {
          "declaracao" : {
            "type" : "string",
            "description" : "Identificador ou referência à declaração associada ao período do IVA."
          },
          "vigente" : {
            "type" : "string",
            "description" : "Indica se a declaração está em vigor."
          },
          "periodo" : {
            "type" : "string",
            "description" : "Período de tributação do IVA no formato 'YYMM'."
          },
          "estado" : {
            "type" : "string",
            "description" : "Estado atual da declaração."
          },
          "dataSub" : {
            "type" : "string",
            "description" : "Data de submissão da declaração no formato 'AAAA-MM-DD'."
          },
          "valor" : {
            "type" : "string",
            "description" : "Valor total reportado na declaração do IVA."
          }
        }
      }
    }
  }
}

English

{
  "type": "object",
  "properties": {
    "RequestId": {
      "type": "string",
      "description": "Unique identifier of the request."
    },
    "results": {
      "type": "string",
      "description": "Total number of results available in the query."
    },
    "totalPages": {
      "type": "integer",
      "description": "Total number of pages available in the query."
    },
    "atIvaList": {
      "type": "array",
      "description": "List of detailed VAT declarations.",
      "items": {
        "type": "object",
        "properties": {
          "declaracao": {
            "type": "string",
            "description": "Identifier or reference to the declaration associated with the VAT period."
          },
          "vigente": {
            "type": "string",
            "description": "Indicates whether the declaration is active."
          },
          "periodo": {
            "type": "string",
            "description": "VAT taxation period in the format 'YYMM'."
          },
          "estado": {
            "type": "string",
            "description": "Current status of the declaration."
          },
          "dataSub": {
            "type": "string",
            "description": "Date of submission of the declaration in the format 'YYYY-MM-DD'."
          },
          "valor": {
            "type": "string",
            "description": "Total amount reported in the VAT declaration."
          }
        }
      }
    }
  }
}

Best Practices

  • Always log the requestId - Include it when contacting support for faster issue resolution
  • Use errorCode or errorName for programmatic error handling in your application
  • Reference the timestamp for correlating errors with your application logs

📖 View complete error codes reference →

Language
Credentials
Header
Click Try It! to start a request and see the response here!