Every agent we build, in one place you control.
Our engineers build and deploy custom collection agents for your sources. The platform is where you run them, chain them, schedule them, watch them, and take the data home.
Agents · Build · Deploy
Custom agents, engineered for each source.
Every agent is built by our engineers for one specific source — its navigation, its forms, its quirks — then validated and deployed into your workspace, versioned.
- One agent per source, never a generic scraper
- Semantic versions on every release
- Status, last run, and next run at a glance
Agent Groups · Run
Run many independent agents as one.
Group agents that answer the same question — every county in a state, every registry in a region — and start them together. Each one runs on its own, so one failure never blocks the rest.
- One click or one API call starts the whole group
- Agents run in parallel and finish independently
- Per-agent progress and results in one view
Pipelines · Orchestrate
Chain agents into multi-stage workflows.
Put agents in a fixed order and run them as one. Each stage starts only when the one before it succeeds, and a failure stops the chain where it happened — so nothing downstream runs on a broken result.
- Stages run in order, each after the last succeeds
- A failed stage stops the chain and shows where
- Every stage's output in one download
Scheduling · Orchestrate
Recurring collection, on autopilot.
Schedule any agent, group, or pipeline with cron or simple intervals, in your timezone. See the next executions before you commit, and pause or resume without touching the agent.
- Cron expressions or plain-language intervals
- Timezone-aware, with a preview of upcoming runs
- Enable, pause, and edit schedules independently
Monitoring · Monitor
Know what ran, what failed, and what looks off.
Live runs, full logs, failures that need attention, and anomaly flags when a run takes far longer or finishes far faster than usual — so a quiet failure never becomes a missing week of data.
- Active jobs and runs, live
- Logs and failure reasons for every execution
- Anomaly flags for unusually slow or fast runs
Data · Deliver
Inspect and retrieve every record.
Every run's output lands in the data explorer as structured records. Browse them, filter them, and download them as CSV, JSON, or Excel — from the latest run or any run before it.
- Structured records, not raw HTML
- Every historical run stays retrievable
- Export to CSV, JSON, or Excel
API · Deliver
Trigger agents and pull results programmatically.
Start runs and collect their output from your own systems. Create a key, start an agent with your inputs, and download the dataset — no browser in the loop.
- Per-user API keys you can create and revoke
- Start agents with your own input parameters
- Download datasets straight into your stack
curl -X POST "$NEXQDATA_API/api/scraper-agents/$AGENT_ID/run" \
-H "X-Api-Key: $NEXQDATA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"inputParameters": "{\"LastName\":\"Doe\"}"}'{
"success": true,
"message": "Agent run started.",
"data": {
"started": true,
"lastRunStatus": "Running",
"agentRunHistoryIds": ["7c1e2f04-…"]
}
}curl "$NEXQDATA_API/api/data-explorer/datasets/$DATASET_ID/download" \
-H "X-Api-Key: $NEXQDATA_API_KEY" -o results.csvWe build the agents.
You run the platform.
Create a workspace to look around, or tell an engineer which sources you need — we’ll scope the agents with you.