When to use Contents
Contents fetches the full content behind a result you already have from Search or Answer — in agent-ready form. Pass the result’s URL and Tako returns one of two things, depending on what the URL points to:- a structured-data CSV export — the exact series behind a Tako card, ready to parse, compute on, or load into a dataframe; or
- the full extracted contents of a web page — clean, parseable text, not raw HTML.
You've already found the result and want the content itself, not prose
There’s no synthesis and nothing to re-derive — the CSV is the card’s data, and the extracted text is the page, ready to use directly.
It's a second step, not a search
Contents operates on a URL you already have: find the result with Search or Answer first, then fetch what’s behind it.
You're building agentic apps that need precise, source-grounded inputs fast
Pull the exact numbers behind a card, or the full clean text behind a web result, and act on real content instead of scraping it yourself.
How it fits
Contents operates on a result you already have:Find the downloadable result
A downloadable result carries a
content descriptor in the response (format is csv for a Tako card, text for a web page).A result is downloadable when it carries a
content descriptor in the Search or Answer response. A Tako card’s CSV is free; web-page text extraction may carry a small cost reported on the descriptor.What the content looks like
- Tako card → CSV
- Web page → text
A Tako card → structured-data CSV. Contents returns the card’s data as a CSV with a header row and one row per data point — the same series the card visualizes. A time-series card comes back keyed by an ISO‑8601 The header names the series exactly as the card sources it, so the values are self-describing and ready to attribute.
Timestamp (with timezone offset), one column per series:Example
Pass a card’s URL — Tako detects the right content from the URL and returns a short-lived download link:"mode": "inline". See the For Your Coding Agent page for the full request and response reference.
Use cases
Feeding exact numbers to an agent
Feeding exact numbers to an agent
Download the CSV behind a card so the agent computes on real values, not prose.
Loading a series into a dataframe
Loading a series into a dataframe
Pull a card’s data straight into pandas for analysis.
Extracting clean text from a web result
Extracting clean text from a web result
Turn any web result URL into parseable text for downstream processing.
Grounding a model on a full web page
Grounding a model on a full web page
Pull a web result’s full extracted contents and drop the text straight into your model’s context — no crawler, no HTML parser.