Wolfram|Alpha · Schema

Pod

A single result section (pod) from Wolfram|Alpha.

AIArtificial IntelligenceComputational KnowledgeNatural Language ProcessingSearch

Properties

Name Type Description
title string Human-readable title for this pod.
scanner string Internal scanner that generated this pod.
id string Pod identifier for filtering.
position integer Ordering position in the result set.
primary boolean Whether this is the primary result pod.
subpods array Sub-results within this pod.
View JSON Schema on GitHub

JSON Schema

wolfram-alpha-full-results-api-pod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wolfram-alpha/refs/heads/main/json-schema/wolfram-alpha-full-results-api-pod-schema.json",
  "title": "Pod",
  "description": "A single result section (pod) from Wolfram|Alpha.",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Human-readable title for this pod.",
      "example": "Result"
    },
    "scanner": {
      "type": "string",
      "description": "Internal scanner that generated this pod.",
      "example": "Integral"
    },
    "id": {
      "type": "string",
      "description": "Pod identifier for filtering.",
      "example": "Result"
    },
    "position": {
      "type": "integer",
      "description": "Ordering position in the result set.",
      "example": 200
    },
    "primary": {
      "type": "boolean",
      "description": "Whether this is the primary result pod.",
      "example": true
    },
    "subpods": {
      "type": "array",
      "description": "Sub-results within this pod.",
      "items": {
        "type": "object",
        "title": "Subpod",
        "description": "A sub-result within a Wolfram|Alpha pod.",
        "properties": {
          "plaintext": {
            "type": "string",
            "description": "Plain text representation of the result.",
            "example": "1/3"
          },
          "img": {
            "type": "object",
            "description": "Image representation of the result.",
            "properties": {
              "src": {
                "type": "string",
                "format": "uri",
                "description": "URL of the result image."
              },
              "alt": {
                "type": "string",
                "description": "Alt text for the result image."
              },
              "width": {
                "type": "integer"
              },
              "height": {
                "type": "integer"
              }
            },
            "example": {
              "src": "https://example.com/path",
              "alt": "string-value",
              "width": 1,
              "height": 1
            }
          }
        }
      },
      "example": [
        "string-value"
      ]
    }
  }
}