Phasis World API
Orient your agent to the World.
One call before the work begins
Models reason. Worlds orient. Send the task to /orient and receive a bounded set of relevant World frames before the agent acts. The public endpoint is free and does not require an API key.
curl "https://api.phasis.ai/v1/orient?query=municipal%20bond%20outlook&limit=3"
What comes back
/orient returns the World frames most relevant to the query. Each frame identifies a maintained piece of the domain that the agent can use as a starting point. The live response is the authority for the current schema.
Query
Describe what the agent needs to understand. /orient uses that task to locate the relevant part of the World.
Results
The response contains a compact result set rather than an entire domain dump. Use the returned frames to prepare the agent's next reasoning step.
{
"results": [
{
"name": "improvement-bond-vs-final-acceptance",
"type": "frame",
"domain": "municipal"
}
]
}The World API surface
Live orientation. The free tier is bounded and needs no API key; the paid tier adds semantic retrieval and model work on the frames it returns.
Evidence acquisition. Live behind an issued key.
Working sets, traces, and private Alpha remain gated.
What a World is
A World is a maintained representation of a real domain. It records what exists, what changed, what the evidence supports, and what remains uncertain. Search helps an agent find information. A World gives the agent an explicit starting state for the domain.
Phasis does not place the changing domain inside the model. The model supplies general reasoning. The World stays outside it, where sources, history, disagreement, and updates can remain visible.
Build with a maintained World
Try /orient without an account. Contact Phasis when your agent needs a deeper World, private domain state, or a deployment built around a specific workflow.