Nimble Jobs turn any Web Search Agent into a managed, repeatable workload. Point a job at an agent, hand it a list of inputs (CSV, Parquet, or JSON), pick a schedule — and Nimble runs the agent across every input on cadence, tracks every execution, and delivers structured results to you. Jobs are the right tool when you need to run an agent across thousands or millions of inputs, on a recurring basis, without writing orchestration code. Think daily price refreshes across your full SKU catalog, hourly SERP monitoring across thousands of keywords, or weekly competitor sweeps across every product page you care about.Documentation Index
Fetch the complete documentation index at: https://docs.nimbleway.com/llms.txt
Use this file to discover all available pages before exploring further.
Open Jobs
Create your first job in Nimble Platform — no coding required
Browse Agents
Pick a pre-built agent or bring your own custom agent
Quick Start
Open Jobs
Go to online.nimbleway.com/jobs and click Create Job.
Pick an agent
Choose any pre-built agent (e.g.,
amazon_pdp, google_search, chatgpt) or one of your custom agents.Set the schedule
Choose Manual Trigger Only for on-demand runs, or Schedule to run every day, week, month, at a specific time, or on a custom cron expression.
How it works
You define the job once
A job binds together an agent, an input set, a destination, and a trigger (manual or scheduled). Once created, a job is a stable, named workload you can run again and again with the same configuration.
Nimble fans out runs across your inputs
Each execution of a job is a run. A run reads every row from your input set and dispatches one agent invocation per row in parallel. Nimble handles concurrency, retries, anti-bot handling, and result aggregation — you don’t manage workers, queues, or rate limits.
Results land in a single, structured artifact
When the run completes, Nimble assembles the per-row results into a single downloadable file (JSON, CSV, or Parquet) and surfaces success rate, completeness, and error samples in the run page.
Creating a Job
The Create Job panel has five sections. Only Job Title, Agent, and Inputs are required — everything else has sensible defaults.Job Title
A human-readable name for the job. This is what you’ll see in the jobs list, in run logs, and in delivered file names. Pick something descriptive — e.g.,daily-amazon-top-1000-skus or hourly-google-serp-priority-keywords.
Agent
Select the Web Search Agent that the job will run. Any agent available in your workspace can be used:- Pre-built agents from the Agent Gallery (e.g.,
amazon_pdp,google_search,chatgpt,tiktok_account). - Custom agents you’ve built in Nimble Studio.
Inputs
The input set defines what the agent runs against. Each entry in the input set becomes one agent invocation in every run. Jobs support four input modes:Upload a CSV or Parquet file. Each row is one agent invocation; column names must match the agent’s input parameters (e.g., a column
asin for amazon_pdp, or keyword for amazon_serp).Use Download example CSV in the Create Job panel to get a template pre-filled with the correct columns for the selected agent.Paste a JSON array of input objects directly. Each object’s keys must match the agent’s input parameters. Best for quick tests or smaller, ad-hoc input sets.
Describe the input set in natural language and have Nimble generate it for you (e.g., “the top 500 best-selling kitchen appliances on Amazon”). Coming soon.
Point the job at a CSV or Parquet file in your S3 bucket so the input set is read at run time. Useful when your input list is itself produced by an upstream pipeline. Coming soon.
Destination
Where Nimble delivers the assembled results when each run completes.Results are stored on Nimble and downloadable from the run page. Each completed run produces a single file containing every successful agent result for that run.
Push results directly to your own S3 bucket as soon as a run completes. Coming soon.
Output format for the delivered file:
JSON— one JSON document per run, with all rows under afilesarray. Best for nested or unstructured agent outputs.CSV— flat tabular output, one row per agent invocation. Best for spreadsheets and BI tools.Parquet— columnar binary format. Best for analytical workloads, data lakes, and any pipeline where you’d otherwise convert CSV to Parquet later.
When enabled, each output row also includes the original input fields (e.g., the
asin you submitted) alongside the parsed agent result. Makes it trivial to join results back to the input set without relying on row order.Run On
Controls when the job executes.The job only runs when you click Run on the job page (or call the API). Use this for on-demand workloads where there’s no fixed cadence — ad-hoc backfills, one-off competitor sweeps, or runs gated on an upstream event.
Run the job automatically on a recurring cadence. Five preset modes are supported:
Manually triggered runs are still allowed on scheduled jobs — pressing Run kicks off an extra run without affecting the schedule.
| Cadence | Description |
|---|---|
Day | Once every 24 hours, anchored to the job’s creation time. |
Week | Once every 7 days, anchored to the job’s creation time. |
Month | Once every calendar month, anchored to the job’s creation date. |
Day at specific time | Once a day at a chosen time of day (HH:MM, UTC). |
Custom | A standard 5-field cron expression (UTC). e.g. 0 0 * * * for daily at midnight UTC, 0 */6 * * * for every 6 hours, 0 9 * * 1 for every Monday at 09:00. |
The Jobs list
The Jobs page shows every job in your workspace with its agent, last run timestamp, and trigger type (Manual or scheduled). Use the search box to filter by job name; the list paginates server-side, so it stays responsive even with thousands of jobs. Click any job in the list to open its detail page.Monitoring runs
Every job has its own detail page with two tabs.Runs tab
A reverse-chronological list of every execution of the job. Each row shows:| Column | Description |
|---|---|
Run ID | Unique identifier for the run (e.g., run_1204402). Click to open the run detail page. |
Status | Success, In progress, or Error. |
Start Time / End Time | Wall-clock start and end of the run. |
Success Rate | Percentage of input rows that produced a successful agent result. |
Actions | Direct download of the run’s result file. |
Monitoring tab
Aggregate health and volume of the job over time:- Total Runs — number of runs executed since the job was created.
- Availability — percentage of scheduled runs that completed (didn’t fail to start).
- Success Rate — percentage of input rows that produced a successful agent result, averaged across runs.
- Completeness — percentage of expected output fields that were populated, averaged across rows. A useful proxy for “is the agent still healthy on this site”.
- Total Rows — cumulative number of agent invocations executed across all runs.
- Volume Overview — bar chart of rows per run over the recent history.
Run detail
Clicking a Run ID opens a single run’s detail page, which includes:- Status, # Inputs, # Results, Start Time, End Time, Job, Agent — quick metadata in the side panel.
- Results Sample — preview of the parsed output, plus a direct download link for the full result file.
- Inputs Sample — the exact input set the run executed against (useful for reproducing or debugging a specific run).
- Errors Sample — preview of any rows that failed, with their error reasons. Used to diagnose problems without scrolling through the full result file.
Header actions
From any job’s detail page, three header actions control the job:- Run — manually trigger a run right now. Works on both manual and scheduled jobs.
- Edit — open the job configuration in the same panel used to create it. Editing does not affect runs already in progress; the next run picks up the new configuration.
- Delete — permanently remove the job and its run history. Cannot be undone.
Use cases
Daily price & inventory refresh
Run
amazon_pdp or walmart_pdp every night across your full SKU catalog. Use Parquet output and S3 (coming soon) to land directly in your data lake.SERP rank tracking
Run
google_search hourly across your priority keywords. Track rank movement over time using the run-by-run history.LLM answer monitoring
Run
chatgpt, perplexity, or gemini daily on prompts that mention your brand or category. Watch how AI platforms describe you over time.Competitor catalog sweeps
Run a custom agent weekly across every competitor product page. Use Completeness to catch the day a competitor changes their page structure.
Jobs vs other tools
| What you need | Use |
|---|---|
| Run an agent once, on a single input | Agent.run |
| Run an agent on a few thousand inputs, one-time | Agent batch |
| Run an agent on any size input set, on a recurring schedule | Jobs |
| Get notified or have results land in cloud storage automatically | Jobs (with S3 destination, coming soon) or Async + callback |
Next steps
Open Jobs
Create your first job in Nimble Platform
Agent Gallery
Browse pre-built agents to power your jobs
Build a Custom Agent
Create an agent for any website, then run it as a job
Callbacks & Delivery
Configure result delivery, webhooks, and storage