The Intelligent
Agent and Tooling Platform

Bring your AI ideas to life with built-in tooling, evaluation, autotuning, and hosting,
so you can focus on product -- not infrastructure.

Agent Platform AI Web Search Join Discord

BACKED BY RESEARCH, TRUSTED BY AI PRACTITIONERS

Camel AI Logo
UCSD Logo
WukLab
Two Small Fish Logo
Camel AI Logo
UCSD Logo
WukLab
Two Small Fish Logo
Camel AI Logo
UCSD Logo
WukLab
Two Small Fish Logo
Your browser does not support the video tag.

Retrieve High-Quality Information from the Web behind a Single API

Stop wrestling with low-level tools like web search and crawling. Gensee provides a high-level search agent that handles all the low-level complexities in a single API call, letting you focus on your agent's real job.

Find more about Gensee web info retrieval. →
Gensee Search Agent

Ship AI Agents in Minutes

Gensee automatically fixes issues in your AI agent prototypes and upgrades them to production-grade quality. By automated testing, step-by-step analysis, intelligently selecting model and tool combinations, Gensee ensures your agents have the robustness and cost-efficiency needed for real-world use in minutes without manual tuning.

Find more about Gensee agent platform. →
Optimization Demo

Seamless Integration, Autoscaled Execution

Bring your AI ideas to life with built-in tooling, evaluation, autotuning, and hosting, so you can focus on product—not infrastructure.

Host tooling or agents for free! →
Python
cURL
Javascript
import requests import json url = 'https://platform.gensee.ai/execute/serve' data = { 'workflow_id': '1cdc615f', 'workflow_secret': 'SK-GENSEEAI-key', 'workflow_input': { 'task': 'How\'s today\'s stock market in U.S.?', }, 'selected_optimization_profile': '8be7934f:cost_optimized' } response = requests.post(url, json=data) print(response.json())
curl -X POST https://platform.gensee.ai/execute/serve \ -H 'Content-Type: application/json' \ -d '{ "workflow_id": "1cdc615f", "workflow_secret": "SK-GENSEEAI-key", "workflow_input": { "task": "How's today'S stock market in U.S.?" }, "selected_optimization_profile": "8be7934f:cost_optimized" }'
const requestData = { workflow_id: '1cdc615f', workflow_secret: 'SK-GENSEEAI-key', workflow_input: { task: 'How\'s today\'s stock market in U.S.?' }, selected_optimization_profile: '8be7934f:cost_optimized' }; fetch('https://platform.gensee.ai/execute/serve', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(requestData) }) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
import requests url = 'https://platform.gensee.ai/tool/search' params = { 'query': 'your_search_query', 'max_results': 5 } headers = { 'Content-Type': 'application/json', 'Authorization': 'Bearer your-api-key' } response = requests.get(url, params=params, headers=headers) print(response.json())
curl -X GET \ 'https://platform.gensee.ai/tool/search?query=your_search_query&max_results=5' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer your-api-key'
const url = new URL('https://platform.gensee.ai/tool/search'); url.searchParams.append('query', 'your_search_query'); url.searchParams.append('max_results', '5'); fetch(url, { method: 'GET', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer your-personal-key' } }) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
Python
cURL
Javascript
import requests url = 'https://platform.gensee.ai/tool/search' headers = { 'Authorization': 'Bearer your-api-key', 'Content-Type': 'application/json' } params = { 'query': 'machine learning tutorials', 'max_results': 10 } response = requests.get(url, headers=headers, params=params) results = response.json() print(results)
curl -X GET 'https://platform.gensee.ai/tool/search?query=machine%20learning%20tutorials&max_results=10' \ -H 'Authorization: Bearer your-api-key' \ -H 'Content-Type: application/json'
const apiKey = 'your-api-key'; const query = 'machine learning tutorials'; const maxResults = 10; const url = `https://platform.gensee.ai/tool/search?query=${encodeURIComponent(query)}&max_results=${maxResults}`; fetch(url, { method: 'GET', headers: { 'Authorization': `Bearer ${apiKey}`, 'Content-Type': 'application/json' } }) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));

Testimonials

"Gensee Search is a big lift over unenriched raw search results, which helped boost my agent's overall accuracy by 40%."

Adam S.

AI Engineer, Free Run

"Gensee Search provides a powerful, unified solution that greatly simplifies how developers build and optimize search performance. It's an impressive tool that we highly recommend."

Wendong Fan

Tech Lead, Eigent AI

Bespoke Enterprise AI Solutions

For large enterprise AI, we also offer bespoke enterprise AI solutions. We like to solve hard-to-solve problems, just bring your problem to us by contacting us.