Looks up a person, place, or concept by name in the structured knowledge base and returns the unique identifier needed to fetch machine-readable facts. Also resolves fact field names (such as "date of birth") into the property identifiers required for a targeted structured lookup.
You need the identifier for a person, place, concept, or a fact field before pulling structured facts.
Returning the facts themselves (use get_facts), or a plain-language overview (use summarize).
0.1 credits / lookup
Set these inside the intent when you run it.
The name of the person, place, concept, or fact field to resolve.
The unique knowledge-base identifier for the best-matching entity, along with its label and description for confirmation.
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":"resolve_entity","topic":"Isaac Newton"}}'Example requests