<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: İbrahim YAVUZ</title>
    <description>The latest articles on DEV Community by İbrahim YAVUZ (@ibrahim_yavuz_ebb1788a95d).</description>
    <link>https://dev.to/ibrahim_yavuz_ebb1788a95d</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3912821%2F7a4a8b4e-0864-4295-8e78-7ddf30cf01d1.jpg</url>
      <title>DEV Community: İbrahim YAVUZ</title>
      <link>https://dev.to/ibrahim_yavuz_ebb1788a95d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ibrahim_yavuz_ebb1788a95d"/>
    <language>en</language>
    <item>
      <title>How I Built a $4 Google Search API Alternative (and Open-Sourced the SDK)</title>
      <dc:creator>İbrahim YAVUZ</dc:creator>
      <pubDate>Mon, 04 May 2026 21:29:28 +0000</pubDate>
      <link>https://dev.to/ibrahim_yavuz_ebb1788a95d/how-i-built-a-4-google-search-api-alternative-and-open-sourced-the-sdk-5dep</link>
      <guid>https://dev.to/ibrahim_yavuz_ebb1788a95d/how-i-built-a-4-google-search-api-alternative-and-open-sourced-the-sdk-5dep</guid>
      <description>&lt;h1&gt;
  
  
  How I Built a $4 Google Search API Alternative
&lt;/h1&gt;

&lt;p&gt;I was tired of paying $50/month for SERP APIs when I only needed a few hundred queries. So I built SerpLib — a pay-per-use Google Search API.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is &lt;a href="https://serplib.com" rel="noopener noreferrer"&gt;SerpLib&lt;/a&gt;?
&lt;/h2&gt;

&lt;p&gt;SerpLib provides real-time Google search results via REST API:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;7 endpoints (Search, Images, News, Maps, Videos, Shopping, Autocomplete)&lt;/li&gt;
&lt;li&gt;Structured JSON responses&lt;/li&gt;
&lt;li&gt;Pay-per-use pricing starting at $4&lt;/li&gt;
&lt;li&gt;100 free credits on signup&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick Example (Python)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

response = requests.post(
    "https://serplib.com/api/v1/search",
    headers={"X-API-KEY": "your_key", "Content-Type": "application/json"},
    json={"q": "best python frameworks 2025"}
)

for result in response.json()["organic"]:
    print(f"{result['title']} - {result['link']}")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>api</category>
      <category>webdev</category>
      <category>python</category>
      <category>seo</category>
    </item>
  </channel>
</rss>
