Skills/Knowledge & Facts/Get structured facts

Get structured facts

0.1 credits / lookup

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.

Use when

You need specific structured values (population, date of birth, coordinates, identifiers) for a known entry.

Not for

Resolving a name to an id first (use resolve_entity), or a plain-language overview (use summarize).

Cost

0.1 credits / lookup

What it accepts

Set these inside the intent when you run it.

topicrequired

The person, place, or concept to look up facts for.

facts_wantedoptional

Which specific structured facts to retrieve, such as population, date of birth, or coordinates.

What you get back

Labelled structured values for the requested fact fields, such as birth date, coordinates, population, or identifiers.

Run it

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

  • What is the population of Tokyo?
  • What are the coordinates of the Eiffel Tower?
  • When was Albert Einstein born and when did he die?