Wolfram|Alpha · Example Payload

Wolframalpha Queryfullresults Example

AIArtificial IntelligenceComputational KnowledgeMachine LearningNatural Language ProcessingPublic APIsSearch

Wolframalpha Queryfullresults Example is an example object payload from Wolfram|Alpha, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "queryFullResults",
  "method": "GET",
  "path": "/query",
  "summary": "Wolfram|Alpha Submit a Full Results Query",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "QueryFullResults200Example",
      "example": {
        "queryresult": {
          "success": true,
          "error": false,
          "numpods": 2,
          "datatypes": "Math",
          "timing": 0.812,
          "pods": [
            {
              "title": "Input",
              "scanner": "Identity",
              "id": "Input",
              "position": 100,
              "subpods": [
                {
                  "plaintext": "integrate x^2 from 0 to 1"
                }
              ]
            },
            {
              "title": "Result",
              "scanner": "Integral",
              "id": "Result",
              "position": 200,
              "primary": true,
              "subpods": [
                {
                  "plaintext": "1/3"
                }
              ]
            }
          ]
        }
      }
    },
    {
      "status": "200",
      "contentType": "application/xml",
      "name": "queryFullResults200Example",
      "example": "string-value"
    }
  ]
}