Live Cattle

Symbol

LE

Exchange

CME

Contract Size

40000

Contract Unit

pounds

Currency

USD

Earliest Available Date

2006-01-01

Example Code

GET /last

Input

  const res = await axios.get(
  'api.futures-api.com/last', 
    {
      params: { symbol: 'LE' } 
      headers: {
          'x-api-key': '{YOUR_API_TOKEN}'
      }
    }
  )
  return res.data

Response

  {
      "metadata": {
        "symbol": "LE",
        "name": "Live Cattle",
        "exchange": "CME"
    },
    "data": [
        {
           "date": "2013-07-01",
           "symbol": "LE",
            "month": 7,
            "year": 22,
            "last": 108.42,
            "open": 106.01,
            "high": 109.34,
            "low": 104.56,
            "change": 1.11
            "change_p": 0.02515
        },
        ...
    ]
    ...
  }
See complete documentation for additional methods