Skip to content

Fiskaly Get Taxpayer

This module allows querying taxpayers registered in Fiskaly. It has two modes of operation:

  1. Get by ID: If taxpayer_id is provided, gets the complete details of a specific taxpayer including name, NIF/CIF, territory and tax configuration.
  2. List all: If taxpayer_id is empty, lists all taxpayers in the organization with pagination support.

The module is of type hidden (hidden in the main interface).

ParameterTypeRequiredDescription
credentials_idcredentialsYesFiskaly credential
taxpayer_idtextNoUUID of the taxpayer. If empty, lists all
limittextNoMaximum number of results (default: 100)
offsettextNoOffset for pagination

Requires Fiskaly type credentials with:

  • api_key: Fiskaly API Key
  • api_secret: Fiskaly API Secret

List:

{
"nextModule": "siguiente_modulo",
"data": {
"success": true,
"taxpayers": [{ "...datos del contribuyente..." }],
"count": 5
}
}

Get one:

{
"nextModule": "siguiente_modulo",
"data": {
"success": true,
"taxpayer": { "...datos completos del contribuyente..." },
"taxpayer_id": "uuid-contribuyente"
}
}
{
"credentials_id": "mi-fiskaly",
"limit": "50"
}
  • Fiskaly SIGN ES API - GET /taxpayers (list)
  • Fiskaly SIGN ES API - GET /taxpayers/{taxpayer_id} (get one)
  • Does not require taxpayer_id for listing (unlike most Fiskaly nodes)
  • Pagination is controlled with limit and offset