Get Tenement

Get a specific tenement by ID

GET
/tenements/{id}
AuthorizationBearer <token>

Bearer token authentication

In: header

Path Parameters

id*string

Tenement ID

Response Body

application/json

application/json

application/json

curl -X GET "https://api.canetoad.ai/api/v1/tenements/string"
{
  "data": {
    "id": "string",
    "tenement_id": "E45/1234",
    "state": "WA",
    "status": "granted",
    "type": "exploration",
    "holder_name": "string",
    "grant_date": "2019-08-24",
    "expiry_date": "2019-08-24",
    "area_km2": 0
  }
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or missing API token"
  }
}
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Resource not found"
  }
}