Welcome
Build with Seekora
Your journey to state-of-the-art web search starts right here.
For AI agents: this page is the documentation index.
Onboard your agent
Let your coding agent install and configure Seekora for you.
Read and execute seekora.site docs and request an API key from hello@seekora.site
Install the SDK
Add the Seekora client to your project.
pip install seekora
npm i @seekora/core
Try it now
Make your first request to any Seekora endpoint.
Search the web
from seekora import SeekoraClient
client = SeekoraClient(api_key="skra-YOUR_API_KEY")
response = client.search("Who is Leo Messi?")
print(response)
const { seekora } = require("@seekora/core");
const sk = seekora({ apiKey: "skra-YOUR_API_KEY" });
const response = await sk.search("Who is Leo Messi?");
console.log(response);
curl --request POST \
--url https://api.seekora.site/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{"query":"who is Leo Messi?","search_depth":"basic","max_results":1}'
Extract webpages
client.extract("https://en.wikipedia.org/wiki/Artificial_intelligence")
Crawl webpages
client.crawl("https://docs.example.com", instructions="Find all pages on the Python SDK")
Map webpages
client.map("https://docs.example.com")
Create Research Task
client.research("What are the latest developments in AI?")
Developer resources
You get 1,000 free API Credits every month. No credit card required. Credits are consumed based on search, extract, or crawl. More advanced requests use more credits.
API creditsHow usage is billed.
Rate limitsEmail hello@seekora.site for limits.
PlaygroundRequest a key to try queries.
Question? Contact Us