List Instruments
List the instruments that are available on the market data API. If you need instruments that are not listed, feel free to request them via hallo@melon.markets.
GET
/instruments
curl \
-X GET https://api.melon.markets/markets/beta/instruments \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"isin": "IE000CNSFAR2"
},
{
"isin": "LU0290358497"
}
]
Response examples (401)
{
"error": true,
"reason": "Unauthorized"
}
Response examples (403)
{
"error": true,
"reason": "Forbidden"
}
Response examples (429)
# Headers
Retry-After: 60
# Payload
{
"error": true,
"reason": "Too Many Requests"
}