---
title: "Profit reports"
method: GET
path: "/reports/profit"
tags: ["Reports"]
---

# Profit reports

`GET /reports/profit`

Profit reports for the authenticated team.

## Query parameters

- `from` string, required — Start date (ISO 8601 format)
- `to` string, required — End date (ISO 8601 format)
- `currency` string — Currency code (ISO 4217)
- `revenueType` 'gross' | 'net' — Type of revenue calculation

## Response `200`

Profit reports for the authenticated team.

- GetProfitResponseSchema
  - `summary` ProfitSummary, required
    - `currentTotal` number, required — Total profit for the current period
    - `prevTotal` number, required — Total profit for the previous period
    - `currency` string, required — Currency code (ISO 4217)
  - `meta` ProfitMeta, required
    - `type` 'profit', required — Type of metric
    - `currency` string, required — Currency code (ISO 4217)
  - `result` ProfitResultItem[], required
    - `date` string, required — Date for the metric (ISO 8601)
    - `percentage` ProfitPercentage, required
      - `value` number, required — Percentage change compared to previous period
      - `status` 'negative' | 'positive', required — Status of the change
    - `current` ProfitCurrent, required
      - `date` string, required — Date for the current value
      - `value` number, required — Current value
      - `currency` string, required — Currency code (ISO 4217)
    - `previous` ProfitPrevious, required
      - `date` string, required — Date for the previous value
      - `value` number, required — Previous value
      - `currency` string, required — Currency code (ISO 4217)

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/midday-ai/apis/midday-api.md) · [All operations](https://skmtc.net/midday-ai/apis/midday-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midday-ai/midday-api/versions/c0df9243c1b0/schema)
