Skip to main content
GET
/
api
/
external
/
reports
/
list-reports
List Reports
curl --request GET \
  --url https://backend.nebuly.com/api/external/reports/list-reports \
  --header 'Authorization: Bearer <token>'
{
  "reports": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ]
}
Returns all public reports available for the project associated with the API key. You need a public API key (pk-...) to authenticate. See here for more information about API keys.

Query parameters

Optional search term to filter reports by name. Case-insensitive substring match.

Response

reports
object[]
The list of reports available for the project.