https://www.searchcans.com/api/search Legacy
Legacy SERP endpoint. Replaced by /api/v1/search.
View Python example (deprecated)
# DEPRECATED — endpoint will be removed on December 31, 2026 23:59 UTC
import requests
response = requests.post(
'https://www.searchcans.com/api/search', # use /api/v1/search instead
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={'s': 'artificial intelligence', 't': 'google'}
)
results = response.json()['data']