All tools
Wikipedia
English Wikipedia: search articles and fetch a clean summary of any page — the lead paragraph, a one-line description and the thumbnail.
Search articles
/searchsync$0.002 / call
Finds Wikipedia articles matching a query. Returns titles, a text snippet and word counts, ranked by relevance. Use the title with /summary.
Input
| Field | Type | Required | Description |
|---|---|---|---|
| query | string | yes | Search terms. |
| limit | integer | — | Max results (default 10). |
Run it
curl -s https://www.sooma.dev/v1/run \
-H "Authorization: Bearer $SOOMA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"wikipedia","endpoint":"/search","input":{"query":"large language model","limit":5}}'
Page summary
/summarysync$0.002 / call
The lead section of a Wikipedia article as plain text, plus a short description, thumbnail and canonical URL. Exact title required (case-sensitive, spaces allowed).
Input
| Field | Type | Required | Description |
|---|---|---|---|
| title | string | yes | Article title, e.g. "Alan Turing". |
Run it
curl -s https://www.sooma.dev/v1/run \
-H "Authorization: Bearer $SOOMA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"wikipedia","endpoint":"/summary","input":{"title":"Alan Turing"}}'