Wolfram|Alpha Full Results via MPP — structured computational answers for any natural-language query
What it does
This endpoint exposes the Wolfram|Alpha Full Results API through the Locus MPP (Micropayment Protocol), settling payments in pathUSD on Tempo L2. Each call accepts a natural-language query and returns the complete structured response from Wolfram|Alpha, including multiple "pods" of data (input interpretation, result, related info, plots, etc.) in plaintext, image, or MathML formats.
The Full Results endpoint is the most powerful of the four Wolfram|Alpha endpoints offered by this provider (the others being Short Answer, Spoken, and Simple/Image). It supports filtering by pod ID (include or exclude specific pods), unit preference (metric or nonmetric), location context for geographically sensitive queries, configurable timeout, and output format selection. The price per call is 55,000 base units of pathUSD (6 decimals), which equals $0.055 per request.
The endpoint is an MPP POST-only route. The probe returned 404 on HEAD and GET, which is expected since the OpenAPI spec defines only POST. The OpenAPI schema is well-defined with clear request parameters. No response schema is documented beyond "Successful response," so the exact structure of the returned pods must be inferred from Wolfram|Alpha's standard Full Results API documentation.
Capabilities
Use cases
- —Agents that need verified mathematical computations or symbolic math results
- —Retrieving structured scientific, geographic, or nutritional data in response to user questions
- —Building applications that require multi-pod structured answers with images and plaintext
- —Providing location-aware factual answers (weather, distance, local data) programmatically
- —LLM tool-use pipelines that need authoritative computational answers
Fit
Best for
- —AI agents needing structured, authoritative computational answers
- —Applications requiring rich multi-pod responses (plots, tables, step-by-step solutions)
- —Developers who want pay-per-call access without managing Wolfram|Alpha API keys
- —Queries spanning math, science, geography, history, nutrition, and finance
Not for
- —High-volume batch processing where per-call cost adds up quickly
- —Use cases requiring only a single plain-text answer (use the Short Answer endpoint instead)
- —Applications that cannot settle payments via Tempo L2 / pathUSD
Quick start
curl -X POST https://wolframalpha.mpp.paywithlocus.com/wolframalpha/full-results \
-H "Content-Type: application/json" \
-d '{"input": "integrate x^2 sin(x)", "format": "plaintext"}'Example
Request
{
"input": "population of france",
"units": "metric",
"format": "plaintext,image",
"timeout": 5,
"location": "Paris, France"
}Endpoint
Quality
The OpenAPI spec is well-structured with clear request schemas and payment info, but the probe only returned 404 because HEAD/GET were used on a POST-only route—not a sign of failure. No response schema is documented, no example responses are available, and crawled pages all return generic 404 JSON. The endpoint is likely live for POST requests but this could not be confirmed.
Warnings
- —Probe used HEAD/GET but endpoint is POST-only per OpenAPI spec; liveness not confirmed via POST
- —No response schema documented — consumers must rely on Wolfram|Alpha Full Results API docs for response structure
- —Currency address 0x20c000000000000000000000b9537d11c60e8b50 assumed to be pathUSD with 6 decimals; if different, price calculation would change
- —All crawled documentation pages returned 404; external docs at https://beta.paywithlocus.com/mpp/wolframalpha.md were not fetched
Citations
- —The Full Results endpoint accepts POST with an 'input' field and optional format, includepodid, excludepodid, units, location, and timeout parametershttps://wolframalpha.mpp.paywithlocus.com
- —Price per call is 55000 base units settled via Tempo in pathUSDhttps://wolframalpha.mpp.paywithlocus.com
- —Four Wolfram|Alpha endpoints are available: short-answer, spoken, full-results, and simplehttps://wolframalpha.mpp.paywithlocus.com
- —API reference documentation is at https://products.wolframalpha.com/apihttps://wolframalpha.mpp.paywithlocus.com