Get Report

Get a specific report by hash

GET
/reports/{hash}
AuthorizationBearer <token>

Bearer token authentication

In: header

Path Parameters

hash*string

Report hash

Response Body

application/json

application/json

application/json

curl -X GET "https://api.canetoad.ai/api/v1/reports/string"
{
  "data": {
    "hash": "string",
    "asx_code": "string",
    "title": "string",
    "type": "string",
    "published_at": "2019-08-24T14:15:22Z",
    "url": "http://example.com"
  }
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or missing API token"
  }
}
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Resource not found"
  }
}