< API Reference
GET
/allaccess/reference/exchanges
For API methods which return a numeric Exchange ID, Exchanges provides a mapping of numeric ID to exchange name and details. Method returns exchange code, name and security types traded on the exchange (equity, option, future).

Example URI

Live (1 points)

https://api.livevol.com/v1/live/allaccess/reference/exchanges

Delayed (1 points)

https://api.livevol.com/v1/delayed/allaccess/reference/exchanges

Response Information

Resource Description

Collection of Exchange

Name Description Type Additional information
id

Exchange id

integer

None

code

Exchange code

string

None

name

Exchange name

string

None

security_types

List of security types

Collection of string

None

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "code": "NASDAQ",
    "name": "Nasdaq Exchange",
    "security_types": [
      "equity"
    ]
  },
  {
    "id": 3,
    "code": "NYSE",
    "name": "NYSE AMEX Exchange",
    "security_types": [
      "equity",
      "option"
    ]
  }
]

application/xml, text/xml

Sample:
<exchanges xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <exchange>
    <code>NASDAQ</code>
    <id>1</id>
    <name>Nasdaq Exchange</name>
    <security_types xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>equity</d3p1:string>
    </security_types>
  </exchange>
  <exchange>
    <code>NYSE</code>
    <id>3</id>
    <name>NYSE AMEX Exchange</name>
    <security_types xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>equity</d3p1:string>
      <d3p1:string>option</d3p1:string>
    </security_types>
  </exchange>
</exchanges>