All SDKs
Python

Python SDK

Official Python SDK with async support. Python 3.8+.

Install

pip install serpii

Quick start

example.py
from serpii import Serpii

client = Serpii(api_key="YOUR_API_KEY")

results = client.search(
    q="best coffee shops in austin",
    location="Austin, TX",
    num=10,
)

print(results["organic_results"])
print(results["intent"])
← Back to SDKs