Get Company

Get a specific company by ASX code

GET
/companies/{code}
AuthorizationBearer <token>

Bearer token authentication

In: header

Path Parameters

code*string

ASX code (e.g., "BHP")

Response Body

application/json

application/json

application/json

curl -X GET "https://api.canetoad.ai/api/v1/companies/BHP"
{
  "data": {
    "asx_code": "BHP",
    "company_name": "BHP Group Limited",
    "market_cap_aud": 150000000000,
    "gics_sector": "Materials",
    "gics_industry_group": "Materials",
    "total_tenements": 250,
    "is_active": true
  }
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or missing API token"
  }
}
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Resource not found"
  }
}