Skip to main content
GET
/
tabs
/
reports
/
income-statement
Estado de resultados
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/income-statement \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "accountingMovementCategoryNames": [
      "<string>"
    ],
    "ingredientCategoryNames": [
      "<string>"
    ],
    "stores": [
      {
        "storeId": "<string>",
        "title": "<string>",
        "sales": {
          "totalAmount": 123,
          "netAmount": 123,
          "taxAmount": 123
        },
        "expenses": {
          "totalAmount": 123,
          "netAmount": 123,
          "taxAmount": 123,
          "accountingMovementCategories": {},
          "ingredientCategories": {}
        },
        "totals": {
          "totalAmount": 123,
          "netAmount": 123,
          "taxAmount": 123
        }
      }
    ],
    "totals": {
      "sales": {
        "totalAmount": 123,
        "netAmount": 123,
        "taxAmount": 123
      },
      "expenses": {
        "totalAmount": 123,
        "netAmount": 123,
        "taxAmount": 123,
        "accountingMovementCategories": {},
        "ingredientCategories": {}
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjusto.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.

Query Parameters

storeIds
string[]
fromDate
string<date-time>
Example:

"2020-01-01T00:00:00.000Z"

toDate
string<date-time>
Example:

"2020-01-01T00:00:00.000Z"

Response

The OpenAPI spec

success
boolean
Example:

true

data
object