Pricing
Choose the plan that suits you best.
Choose the plan that suits you best.
Start integration with your preferred language.
Dive deeper into our advanced features.
Use SERP data to automate your business needs.
Explore company information and helpful guides.
{
"organic_results": [
{
"position": 1,
"title": "Coffee - Wikipedia",
"link": "https://en.wikipedia.org/wiki/Coffee",
"displayed_link": "en.wikipedia.org › wiki › Coffee",
"snippet": "Coffee is a beverage brewed from...",
"snippet_highlighted_words": ["Coffee"],
"favicon": "https://cdn.example.com/favicon...",
"source": "Wikipedia"
},
{
"position": 2,
"title": "Starbucks Coffee Company",
"link": "https://www.starbucks.com/",
...
}
]
}
## Organic Results
| Position | Title | Snippet | Source |
| --- | --- | --- | --- |
| 1 | [Coffee - Wikipedia](https://en.wikipedia.org/wiki/Coffee) | Coffee is a beverage brewed from... | Wikipedia |
| 2 | [Starbucks Coffee Company](https://www.starbucks.com/) | Explore the menu, sign up for... | Starbucks |
Markdown tables carry the same information as nested JSON, with fewer tokens and no brace-counting for your model.
Pick whichever fits your stack, all three return the same output.
output=md
/search.md
Accept: text/markdown
# All three produce the same markdown output:
curl "https://serpapi.com/search?engine=google&q=coffee&api_key=YOUR_KEY&output=md"
curl "https://serpapi.com/search.md?engine=google&q=coffee&api_key=YOUR_KEY"
curl -H "Accept: text/markdown" "https://serpapi.com/search?engine=google&q=coffee&api_key=YOUR_KEY"
Cut token usage by 50% on average. Maximize your efficiency with massive savings of more than 90% on APIs with complex nested JSON.
| API | JSON | Markdown | Savings |
|---|---|---|---|
| Google Search | 150K | 39K | |
| Google Shopping | 361K | 38K | |
| Google Hotels | 202K | 22K | |
| Apple Maps | 494K | 43K | |
| Amazon | 191K | 97K | |
| DuckDuckGo | 32K | 12K | |
| Bing Shopping | 214K | 103K | |
| Walmart | 106K | 68K |
Markdown is how modern LLMs prefer to consume context. Drop it into any agent pipeline.
Runs a search
output=md
50% fewer tokens
Faster, cheaper
Every design choice serves one goal: fit more useful data in your model's context window.
Half the tokens of equivalent JSON, same information.
URLs rendered as proper markdown links, [title](url) instead of separate fields
Natural reading flow with tables, links, and headers instead of nested braces.
Tracking fields, opaque tokens, and duplicated values stripped automatically.
Works across all 100+ SerpApi APIs with zero configuration.
Result arrays render as clean markdown tables (organic results, shopping, etc.).
YAML frontmatter, result tables, markdown links and images, pagination — all generated automatically for every API.
---
engine: google
q: coffee
location: Austin, Texas, United States
total_results: 1,240,000,000
time_taken_displayed: 0.42
---
# Search Results for "coffee"
## Knowledge Graph
**Coffee** — Beverage
Coffee is a beverage brewed from roasted coffee beans. Darkly colored, bitter, and slightly acidic...
## Organic Results
| # | Title | Snippet | Source |
| --- | --- | --- | --- |
| 1 | [Coffee - Wikipedia](https://en.wikipedia.org/wiki/Coffee) | Coffee is a beverage brewed from roasted coffee beans... | Wikipedia |
| 2 | [Blue Bottle Coffee](https://bluebottlecoffee.com) | Fresh roasted specialty coffee, delivered to your door. | Blue Bottle |
| 3 | [Starbucks Coffee Company](https://www.starbucks.com) | Explore the menu, sign up for Starbucks Rewards... | Starbucks |
## Related Searches
- [best coffee near me](https://serpapi.com/search?q=best+coffee+near+me)
- [coffee shops](https://serpapi.com/search?q=coffee+shops)
- [types of coffee beans](https://serpapi.com/search?q=types+of+coffee+beans)
## Pagination
- [Next page →](https://serpapi.com/search.md?engine=google&q=coffee&start=10)
Pair markdown with the json_restrictor parameter to keep only the sections your agent uses.
## Organic Results
| # | Title | Snippet | Source |
| --- | --- | --- | --- |
| 1 | [Coffee - Wikipedia](https://en.wikipedia.org/wiki/Coffee) | Coffee is a beverage brewed from roasted coffee beans... | Wikipedia |
| 2 | [Blue Bottle Coffee](https://bluebottlecoffee.com) | Fresh roasted specialty coffee, delivered to your door. | Blue Bottle |
| 3 | [Starbucks Coffee Company](https://www.starbucks.com) | Explore the menu, sign up for Starbucks Rewards... | Starbucks |
output=md costs the same as output=json. One search credit, same as any JSON search.output=md when feeding results to an LLM, and output=json when you need programmatic access with exact field extraction.