Not Python? API Reference

Ensure you have set your Web Transpose API Key.

Regular SERP API

Run the SERP API doing the following:

import webtranspose as webt

results = webt.search("what happened in the third great ninja war?")
# result.keys()
# \['results']

SERP API with AI Filtering

In addition to retrieving websites, the AI filtering will also filter out relevant results.

import webtranspose as webt

results = webt.search_filter("Paul Graham's Blog")
# result.keys()
# \['results', 'filtered_results']