List Reports

Get a paginated list of company announcements

GET
/reports
AuthorizationBearer <token>

Bearer token authentication

In: header

Query Parameters

page?integer

Page number

Default1
Range1 <= value
per_page?integer

Results per page (max 100)

Default50
Range1 <= value <= 100
format?string

Output format

Default"json"
Value in"json" | "csv" | "tsv"
company?string

Filter by ASX code

type?string

Filter by report type

from?string

From date (YYYY-MM-DD)

Formatdate
to?string

To date (YYYY-MM-DD)

Formatdate
search?string

Search in title

Response Body

application/json

application/json

application/json

curl -X GET "https://api.canetoad.ai/api/v1/reports"
{
  "data": [
    {
      "hash": "string",
      "asx_code": "string",
      "title": "string",
      "type": "string",
      "published_at": "2019-08-24T14:15:22Z",
      "url": "http://example.com"
    }
  ],
  "meta": {
    "total": 0,
    "page": 0,
    "per_page": 0,
    "total_pages": 0
  }
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or missing API token"
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit exceeded",
    "details": {
      "reset_at": 1706789460
    }
  }
}