Introduction
What the NexqData API does, and where to start.
NexqData engineers, deploys, and maintains a collection agent for each source you need — a court portal, a registry, a licensing board. The API lets your own systems work with those agents directly: start them, follow their runs, and download the structured data they collect.
What you can do
Run agents
Start an agent as a job, with your own input parameters. Jobs complete in the background.
Follow jobs and runs
Check status, list history, and stop a run in progress.
Search many sources
Run a group of agents with one set of inputs — one status per source.
Chain agents
Run agents in order, each after the last succeeds.
Retrieve data
Preview, query, and download each run's structured output.
API reference
Errors, rate limits, pagination, and every endpoint.
How it fits together
- Our engineers build an agent for a source and deploy it to your workspace.
- You create an API key in the workspace.
- Your code starts jobs, checks on them, and downloads the results — no browser in the loop.
Everything is JSON over HTTPS, and every response uses the same envelope:
{
"success": true,
"message": "Job started.",
"data": { }
}Start with the Quickstart
The Quickstart takes you from a new API key to a downloaded dataset in five minutes.