Skip to main content
GET
/
reports
cURL
curl --request GET \
  --url https://api.base39.com.br/v1/reports \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "rep_xyz789",
      "target": "tgt_company123",
      "template": "tpl_abc123",
      "status": "completed",
      "createdAt": "2025-01-15T10:30:00Z"
    },
    {
      "id": "rep_abc456",
      "target": "tgt_company456",
      "template": "tpl_def456",
      "status": "processing",
      "createdAt": "2025-01-14T15:20:00Z"
    }
  ],
  "meta": {
    "total": 45,
    "limit": 10,
    "offset": 0
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

limit
integer
default:10

Número máximo de resultados

offset
integer
default:0

Deslocamento para paginação

Response

200 - application/json

Lista de relatórios

data
object[]
meta
object
I