Skip to main content
GET
/
registers
List registers
curl --request GET \
  --url https://api.openfiskal.com/v1/registers \
  --header 'Authorization: Bearer <token>' \
  --header 'X-OpenFiskal-Merchant: <x-openfiskal-merchant>'
{
  "data": [
    {
      "id": "<string>",
      "merchant_id": "<string>",
      "location_id": "<string>",
      "name": "<string>",
      "status": "active",
      "fiscalization_status": "not_fiscalized",
      "created_at": "2023-11-07T05:31:56Z",
      "external_id": "<string>",
      "fiscalization": {
        "regime": "<string>",
        "fiscalized_at": "2023-11-07T05:31:56Z",
        "tse_serial": "<string>",
        "client_id": "<string>"
      }
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://dev.openfiskal.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-OpenFiskal-Merchant
string
required

Merchant identifier returned by the merchants resource.

Response

Registers returned

data
object[]
required
next_cursor
string | null