Retrieves specific machine-readable data points for an entity: dates, geographic coordinates, population figures, external identifiers, and relationships to other entries. Returns exact structured values rather than a prose description.
You need specific structured values (population, date of birth, coordinates, identifiers) for a known entry.
Resolving a name to an id first (use resolve_entity), or a plain-language overview (use summarize).
0.1 credits / lookup
Set these inside the intent when you run it.
The person, place, or concept to look up facts for.
Which specific structured facts to retrieve, such as population, date of birth, or coordinates.
Labelled structured values for the requested fact fields, such as birth date, coordinates, population, or identifiers.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Knowledge & Facts skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/knowledge/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"get_facts","topic":"Tokyo","facts_wanted":"population, area"}}'Example requests