Getting Started
Introduction
Search the web, scrape any page, and interact with AI models through one unified API.
For AI agents: Use llms.txt for a full index of all documentation.
SerperMatrix is a REST API for real-time search and web scraping. Use it to power AI agents, SEO tools, lead enrichment, and research workflows.
Get your API key
Create an account for direct API access and monthly credits
Try it in the Playground
Test Search, Scrape, and Chat in the browser without writing code
Quickstart
Make your first search request in seconds. Select your preferred programming language from the dropdown menu below.
Request
curl -X POST https://serpermatrix.com/api/v1/search \
-H "X-API-KEY: sm_live_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{"query":"nuxt documentation","sources":["web"],"limit":10,"country":"us","lang":"en"}'{
"success": true,
"data": {
"web": [
{
"title": "Nuxt: The Intuitive Web Framework",
"url": "https://nuxt.com",
"description": "Nuxt is an open source framework that makes web development intuitive and powerful.",
"position": 1
},
{
"title": "Nuxt 3 Documentation - Installation",
"url": "https://nuxt.com/docs/getting-started/installation",
"description": "Get started with Nuxt 3 by installing the core packages and running your dev server.",
"position": 2
}
]
}
}What SerperMatrix can do
Search
Search the web across web, news, images, places, scholar, and patents in one call
Scrape
Extract clean, LLM-ready Markdown, JSON, or text from any website URL
Chat
Proxy completions to top-tier LLMs with token-accurate billing
Base URL
All API requests are directed to:
https://serpermatrix.com/api/v1
Authentication
Every API request requires an active API key sent in the request header:
X-API-KEY: sm_live_your_api_key_here
See Authentication for details.
