Your agent answers facts from stale training data; this returns current, sourced answers from Wikipedia and Wikidata.
Encyclopedic facts and structured knowledge: Wikipedia article summaries and full-text search, plus Wikidata entity search and lookup for machine-readable facts (identifiers, dates, relationships). Wikipedia content is available under CC BY-SA; Wikidata is CC0.
Get a concise summary, thumbnail, and link for a Wikipedia article by title.
Exact English Wikipedia article title, e.g. "Albert Einstein".
curl -X POST "https://skill.askfaro.com/skills/knowledge/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Give me a summary of the Eiffel Tower"
}
}'askfaro describe knowledge/wikipedia_summary
Install pip install askfaro-cli, then askfaro auth login.
Full-text search across Wikipedia articles, returning titles and snippets.
Number of results to return (1-50).
Result offset for pagination.
Search query text.
curl -X POST "https://skill.askfaro.com/skills/knowledge/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Search Wikipedia for articles about black holes"
}
}'askfaro describe knowledge/wikipedia_search
Install pip install askfaro-cli, then askfaro auth login.
Fetch full Wikidata entities by ID, including labels, descriptions, and claims.
One or more entity IDs separated by "|", max 50 (e.g. "Q42|Q1").
Pipe-separated properties to return (e.g. "labels|descriptions|claims"). Omit for defaults.
Pipe-separated language codes to limit labels/descriptions (e.g. "en|fr").
curl -X POST "https://skill.askfaro.com/skills/knowledge/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get the Wikidata facts for Q42"
}
}'askfaro describe knowledge/wikidata_get_entities
Install pip install askfaro-cli, then askfaro auth login.
Search Wikidata for entities (items or properties) matching a label.
Entity type to search for.
Number of results (1-50).
Text to search for.
Language code for the search and returned labels (e.g. "en").
curl -X POST "https://skill.askfaro.com/skills/knowledge/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Find the Wikidata entity for Marie Curie"
}
}'askfaro describe knowledge/wikidata_search
Install pip install askfaro-cli, then askfaro auth login.