Skip to main content
GET
/
v1
/
reports
List reports
curl --request GET \
  --url https://api-sandbox.y.uno/v1/reports \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
[
  {
    "id": "a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
    "status": "COMPLETED",
    "date_range": {
      "from": "2026-02-01T00:00:00.000Z",
      "to": "2026-02-28T23:59:59.999Z"
    },
    "download_url": "https://reports.y.uno/download/a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
    "created_at": "2026-03-01T12:00:00.000Z"
  }
]

Authorizations

public-api-key
string
header
required

Your public API key from the Yuno Dashboard

private-secret-key
string
header
required

Your private secret key (server-side only)

Query Parameters

limit
integer
default:20

Maximum number of results to return

Required range: x <= 100
starting_after
string

Cursor for forward pagination. Pass the ID of the last item from the previous page.

status
enum<string>

Filter by report status

Available options:
PROCESSING,
COMPLETED,
FAILED
ending_before
string

Cursor for backward pagination. Pass the ID of the first item from the previous page.

Response

200 - application/json

List of reports

id
string<uuid>
Example:

"a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d"

status
enum<string>

Report generation status

Available options:
PROCESSING,
COMPLETED,
FAILED
Example:

"PROCESSING"

date_range
object
download_url
string<uri>

URL to download the completed report

Example:

"https://reports.y.uno/download/a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d"

created_at
string<date-time>
Example:

"2026-03-01T12:00:00.000Z"