Nextbrowser 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

Why specify a result format?

  • Clarity – A strict schema keeps the agent from guessing your layout.
  • Consistency – Identical tasks run at different times produce identical files.

How to describe the format

Be explicit about:
  1. File type – “CSV” vs. “JSON” vs. “table on screen.”
  2. Column / field names – List them in the order you want.
  3. 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.