S&P Global · Example Payload

Sandp Global Get Financial Data Example

Financial DataMarket IntelligenceCommodity InsightsCredit RatingsAnalyticsFortune 500Enterprise

Sandp Global Get Financial Data 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": "POST",
    "url": "https://api-ciq.marketintelligence.spglobal.com/gdsapi/rest/v3/clientservice.json",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "inputRequests": [
        {
          "function": "GDSP",
          "identifier": "IQ303931",
          "mnemonic": "IQ_TOTAL_REV",
          "properties": {
            "startDate": "2024-01-01",
            "endDate": "2024-12-31",
            "periodType": "Annual"
          }
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "GDSSDKResponse": [
        {
          "Rows": [
            {
              "Row": ["12345678000"]
            }
          ],
          "Headers": [
            {
              "Name": "IQ_TOTAL_REV"
            }
          ],
          "ErrMsg": null,
          "Type": "Double",
          "RequestId": "GDSP||IQ303931||IQ_TOTAL_REV"
        }
      ]
    }
  }
}