List Instruments

GET /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.

Responses

  • 200 application/json

    Success

    Hide response attribute Show response attribute object
    • isin string(isin) Required

      The ISIN identifying the instrument.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
  • 403 application/json

    Invalid API Key

    Hide response attributes Show response attributes object
  • 429 application/json

    Too Many Requests

    Hide headers attribute Show headers attribute
    • Retry-After string(number)

      Number of seconds before attempting to send another request. See RFC 7231 for more information.

    Hide response attributes Show response attributes object
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"
}