Skip to main contentNextbrowser lets you decide exactly how the data comes back once a task finishes. Pick the structure that makes the most sense for what you’ll do next.
Supported output types
- Plain text
- Bullet list
- Table (rendered in-app or exported)
- CSV
- JSON
- Hyperlinks
- Clarity – A strict schema keeps the agent from guessing your layout.
- Consistency – Identical tasks run at different times produce identical files.
Be explicit about:
- File type – “CSV” vs. “JSON” vs. “table on screen.”
- Column / field names – List them in the order you want.
- Any special rules – e.g., “Price without currency symbol,” or “One row per seller.”
Examples
Bad
Collect data on the top 10 sneakers from Amazon and create a CSV.
Good
Collect data on the top 10 Amazon sneakers and return a CSV with columns Name, Brand, Price (USD), Rating (1-5), Product URL.
Examples
- Bad
Collect data on the top 10 sneakers from Amazon and create a CSV.
- Good
Collect data on the top 10 Amazon sneakers and return a CSV with columns Name, Brand, Price (USD), Rating (1-5), Product URL.