# Introduction

The ORATS Live Data API is a faster version of the regular data API except the data is calculated in real-time with less than 10 seconds of market delay verse our 15 minute delayed API.

LIVE ACCESS

Access to the Live Data API requires a Tradier Brokerage active trading account.

REQUEST LIMIT

There is a 1000 request per minute limit for the data API.

# Authentication

All requests must be sent with a valid token parameter in the URL with your secret token.

This is a premium service, please email us at support@orats.com to signup and receive a token.

If you need help with your token, email us at support@orats.com.

Example Request

curl -L "https://api.orats.io/datav2/live/strikes?token=your-secret-token&ticker=AAPL"

# Data Format

Get data in JSON or CSV format by passing in the extension of the format type. The default type is JSON.

Example JSON request

curl -L "https://api.orats.io/datav2/live/strikes?token=your-secret-token&ticker=AAPL"

curl -L "https://api.orats.io/datav2/live/strikes.json?token=your-secret-token&ticker=AAPL"

Example CSV request

curl -L "https://api.orats.io/datav2/live/strikes.csv?token=your-secret-token&ticker=AAPL"