The World's Fastest & Cheapest
Search Engine Results API

Unlock lightning-fast Google search results with our top-tier SERP API delivering lightning-fast Google search results in 1-2 seconds, at an unbeatable price.

View Endpoints

Fetch Search Engine Results, Fast and Reliable

Universal SERP Coverage

Get structured search results from Google, Bing, Yahoo, and other major search engines with one API.

Stealth Mode

Bypass detection with rotating proxies, user-agent randomization, and CAPTCHA solving capabilities.

Structured JSON Output

Receive clean, ready-to-use structured data with minimal parsing required.

Fast & Reliable

Low-latency, high-availability endpoints designed for real-time applications and bulk data use.

SERP Analytics

Understand rankings, visibility, and competitor trends with integrated analysis tools.

Simple API Integration

Integrate effortlessly with just a few lines of code, whether you're building apps or dashboards.

Simple Credit-Based Pricing

$0.001 / credit

Get started with 2500 free credits. Pay as you go with credits that never expire.

API Endpoints

Fetch search engine results from multiple search engines including Google, DuckDuckGo, Yahoo, Bing, and Yandex. Get structured data with position rankings, titles, descriptions, and URLs.

Use Cases

SEO Analysis

Track search rankings and monitor competitor visibility across multiple search engines.

Market Research

Gather insights about product placement and brand visibility in search results.

Content Strategy

Analyze top-ranking content to inform your content creation and optimization efforts.

Competitive Analysis

Monitor competitor rankings and identify opportunities in search results.

Who is it for?

Digital Marketers

Track campaign performance and optimize search visibility across multiple platforms.

SEO Professionals

Monitor rankings and analyze search results for client websites.

Content Creators

Research topics and analyze high-ranking content in their niche.

Business Analysts

Gather market intelligence and track competitive positioning in search results.

Parameters

search_engine

google | duckduckgo | yahoo | bing | yandex

pages_number

Number of pages to fetch

query

Search query string

country

us | es | fr | de for google

curl -X GET "https://www.fetchserp.com/api/v1/serp?search_engine=duckduckgo&country=fr&pages_number=2&query=tesla" \
 -H 'accept: application/json'\
 -H 'authorization: Bearer YOUR_API_TOKEN'

Response

{
  "response": {
    "data": {
      "serp": [
        {
          "site_name": "Aramisauto",
          "url": "https://duckduckgo.com/y.js?ad_domain=aramisauto.com&ad_provider=bingv7aa&ad_type=txad&click_metadata=6HSno15e28hCDcnmcrb_A2pmqoJYJwX_hvwC58LKxltbLSSAOZ325KLWNg8mGHWbt%2D3GRex%2D2PJze8%2DPdVseF2mC2b4oVFMGgwWDDvW%2DIoAo8FXrdGBeBYqpvwve5Q%2DK.Fz7YbFk_k96xDO8KDfwbig&eddgt=5y7mQRZ1J5gMSfV9mQuDxg%3D%3D&rut=1264fed111d73c0dfd8e032557df75d58643ed613002dff82700432d882fc01b&u3=https%3A%2F%2Fwww.bing.com%2Faclick%3Fld%3De8kuai9mIMYT9QFVU1uTAihzVUCUw2g570HYDYrFpq8Qi2x6tm8p7AcEU3tsYFcpRdSqtvToSeLB6ul_ktPSLrSa%2Do4kpJgnIz73saXD_X0kpvdooI9RdWdYKo2ZwZot64Iz_Yktiqp%2D0kGpQGix2TEnW1mFTiGRtLn5GGOJCO9X8S4OZKD7JOTK%2DTgL_sF91cb4RP5w%26u%3DaHR0cHMlM2ElMmYlMmZ3d3cuYXJhbWlzYXV0by5jb20lMmZ2b2l0dXJlcyUyZnRlc2xhJTJmbW9kZWwteCUyZm9mZnJlcyUyZiUzZmNtcGlkJTNkcHNfa3lfTVNOX1ZOX1NFQVJDSF9HRU5fTU9ERUxFJTI2bXNjbGtpZCUzZDM1NjczOGZmMjA5OTFjYWNiYzY3NWYxOThmMWI2Mjc1JTI2dXRtX3NvdXJjZSUzZGJpbmclMjZ1dG1fbWVkaXVtJTNkY3BjJTI2dXRtX2NhbXBhaWduJTNkVk5fU0VBUkNIX0dFTl9NT0RFTEVfTkVXJTI2dXRtX3Rlcm0lM2R0ZXNsYSUyNTIwbW9kZWwlMjUyMHglMjZ1dG1fY29udGVudCUzZFRlc2xhJTI1MjBNb2RlbCUyNTIwWA%26rlid%3D356738ff20991cacbc675f198f1b6275&vqd=4-102996141944316983333655616807852445662&iurl=%7B1%7DIG%3D2A69C2F15D4549EDA278491841792DE1%26CID%3D187F10F6DF406B121892054BDE176A43%26ID%3DDevEx%2C5047.1",
          "title": "neufs Tesla Model X | Avec ou Sans Apport Ad",
          "description": "Véhicules neufs et suréquipés. Devis simple et rapide en ligne. Tesla Model X? Votre Voiture Neuve Ou Occasion Livrée chez Vous en 24H",
          "position": 1
        },
        {
          "site_name": "Tesla",
          "url": "https://www.tesla.com/",
          "title": "Tesla",
          "description": "Tesla accelerates the world's transition to sustainable energy with electric cars, solar, and integrated renewable energy solutions for homes and businesses.",
          "position": 2
        }
      ]
    }
  }
}

2500 Free credits

const response = await fetch('https://www.fetchserp.com/api/v1/serp?search_engine=duckduckgo&pages_number=2&query=tesla', {
  method: 'GET',
  headers: {
    'accept': 'application/json',
    'authorization': 'Bearer YOUR_API_TOKEN'
  }
});

const data = await response.json();
console.log(data);