Skip to content

Get Fiscal Receipt API

Retrieves fiscal receipt data from the fiscal system.

Old Endpoint (will be depreciated)

Method: GET
URL: BASE_URL/merchant/getFiscalReceipt/

New endpoint

Method: GET
URL: BASE_URL/merchant/fiscalization/status/

Request Parameters

ParameterTypeRequiredLocationDescription
api-keystringYesHeaderAPI authentication key.
transactionIdstring (UUID)NoQueryUnique identifier for the transaction.
externalIdstringNoQueryUnique identifier for the fiscal receipt used in Cash Payment registration.
refundedbooleanNoQueryFilter fiscal receipts based on refund status.

💡 Note: Either transactionId or externalId must be provided.


Example Request

plaintext
GET {BASE_URL}/merchant/fiscalization/status/?refunded=false&transactionId=e2da46c6-8c89-400e-8bd9-037297b2e8b1

Response example

json
{
  "result": {
    "success": true,
    "isRefund": false,
    "receiptUrl": "https://ofd.example.com",
    "terminalId": "EP000000000378",
    "receiptId": 173723,
    "fiscalSign": "947030008479"
  }
}