Skip to main content
GET
/
v1
/
instruments
/
{exchange}
/
{symbol}
Get Instrument by Slug
curl --request GET \
  --url 'https://api.capyfin.com/v1/instruments/{exchange}/{symbol}?apikey='
{
  "instrument": {
    "id": "507f1f77bcf86cd799439011",
    "slug": "nasdaq-aapl",
    "symbol": "AAPL",
    "name": "Apple",
    "fullName": "Apple Inc.",
    "exchange": "nasdaq",
    "image": "https://assets.capyfin.com/instruments/507f1f77bcf86cd799439011.png",
    "marketCap": 3587432814000,
    "country": "US",
    "segments": [
      "<string>"
    ],
    "geo": [
      "<string>"
    ],
    "kpis": [
      "<string>"
    ],
    "investorRelationsUrl": "https://investor.apple.com",
    "closingPrice": 237.33,
    "returnLastDay": 1.92,
    "returnThisWeek": 3.24,
    "return2Years": 54.771,
    "return5Years": 281.63,
    "returnAll": 1432.26,
    "dividendYield": 0.4171,
    "dividendExDate": "2024-11-08T00:00:00.000Z",
    "dividendPayDate": "2024-11-14T00:00:00.000Z",
    "dividendUsd": 0.25,
    "dividendFrequency": "QUARTERLY",
    "dividendYearly": {
      "2023": 0.94,
      "2024": 0.97
    },
    "closeYearly": {
      "2023": 192.53,
      "2024": 237.33
    }
  }
}

Authorizations

apikey
string
query
required

Pass your API key as a query parameter (e.g., /endpoint?apikey=YOUR_API_KEY)

Path Parameters

exchange
string
required

The exchange of the instrument (e.g., nasdaq, nyse).

symbol
string
required

The symbol of the instrument (e.g., aapl, tsla).

Response

200 - application/json
instrument
object
required