In this quickstart you’ll:Documentation Index
Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt
Use this file to discover all available pages before exploring further.
- Authenticate to the Sequentum API.
- Open an Agent Builder session and describe the data you want.
- Run the resulting agent and read records back in the same call.
You’ll need a Sequentum account and an API key. Keys are issued by an admin from Control Center → Users → Manage API keys. If you don’t have admin access, ask whoever does.
1. Set your API key
2. Start an Agent Builder session
Describe the agent you want in plain language. Agent Builder will plan, build, and test it for you.sessionId. The session is now running on Sequentum’s side.
3. Watch progress
Poll the events stream until the session reportscompleted. The endpoint accepts a lastEventIndex cursor — pass -1 on the first call and the highest index you’ve seen on each subsequent call. See Sessions for the full state machine.
phase: "ready_to_finish", finalize it and a real Agent will be created.
agentId.
4. Run the agent and get records back inline
For the shortest path, run synchronously — the call blocks until the run completes and returns extracted records in the response body.{ "<AgentName>": [ { ...record1 }, { ...record2 } ] }.
You just built and ran a web data agent end-to-end with three API calls.
What’s next
Sessions in depth
The Agent Builder session state machine — phases, events, and the lifecycle from prompt to finished agent.
Schedule recurring runs
Attach a CRON, run-once, or interval schedule to any agent.
Production polling pattern
Skip
isRunSynchronously and poll GET /run/{runId}/status until terminal — the pattern you want for anything beyond a few seconds.Run lifecycle
Statuses, stop vs kill, what every run produces.