Getting Started
Your First Request
Make your first SerperMatrix API call in under a minute.
This walkthrough searches the web for a query and prints the JSON response.
Prerequisites
- A SerperMatrix account with at least one API key
curlor any HTTP client
Step 1 — Set your API key
export SERPERMATRIX_API_KEY="sm_live_your_key_here"
Step 2 — Send a search request
curl -s -X POST "https://serpermatrix.com/api/v1/search" \
-H "X-API-KEY: $SERPERMATRIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "serpermatrix api"}' | jq .
Step 3 — Explore the response
The response includes organic results, knowledge graph data (when available), and related metadata. Use the API Reference to inspect the full schema and try other endpoints.
What's next?
- Browse all endpoints in the API Reference
- Integrate SerperMatrix into your app with server-side API key storage
