S&P Global · Example Payload

Sandp Global Get Latest Prices Example

Financial DataMarket IntelligenceCommodity InsightsCredit RatingsAnalyticsFortune 500Enterprise

Sandp Global Get Latest Prices Example is an example object payload from S&P Global, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.platts.com/v1/prices/latest?symbol=PCAAS00,AAQZB00",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "results": [
        {
          "symbol": "PCAAS00",
          "assessDate": "2026-05-01",
          "value": 82.50,
          "unit": "BBL",
          "currency": "USD",
          "modDate": "2026-05-01T16:30:00Z"
        },
        {
          "symbol": "AAQZB00",
          "assessDate": "2026-05-01",
          "value": 9.35,
          "unit": "MMBTU",
          "currency": "USD",
          "modDate": "2026-05-01T16:30:00Z"
        }
      ],
      "count": 2
    }
  }
}