GET
/
public
/
v3
/
companies
/
{id}
curl --request GET \
  --url https://api.quartr.com/public/v3/companies/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "country": "US",
    "displayName": "Apple",
    "id": 4742,
    "name": "Apple Inc.",
    "tickers": [
      {
        "ticker": "AAPL",
        "exchange": "BASE"
      },
      {
        "ticker": "AAPL",
        "exchange": "NasdaqGS"
      }
    ],
    "isins": [
      "US0378331005"
    ],
    "updatedAt": "2021-09-15T15:00:00.000Z",
    "createdAt": "2021-09-01T12:00:00.000Z",
    "backlinkUrl": "https://example.com"
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
number
required

Response

200
application/json
data
object
required

Was this page helpful?