Acceso programático a más de 300 herramientas de IA y 163+ categorías. Crea integraciones, potencia funciones de descubrimiento y enriquece tu producto con datos de herramientas de IA en tiempo real.
Se requiere clave API
Todos los endpoints requieren un X-API-Key válido. Contáctanos para obtener acceso.
¿Buscas MCP?
Conecta Claude, Cursor o cualquier asistente compatible con MCP directamente — sin necesidad de clave API. Documentación del Servidor MCP.
Pass your API key via the X-API-Key header on every request. Keys are prefixed with sk_ and are plan-scoped.
| 1 | curl "https://bnkmsvdtubbrqtdqoukb.supabase.co/functions/v1/public-api/api/v1/tools" \ |
| 2 | -H "X-API-Key: sk_your_api_key_here" |
MISSING_API_KEYNo X-API-Key header was providedINVALID_API_KEYKey not found or does not match stored hashREVOKED_API_KEYKey has been deactivated by an adminAll endpoints are relative to this base URL. HTTPS only.
| 1 | https://bnkmsvdtubbrqtdqoukb.supabase.co/functions/v1/public-api/api/v1 |
Append endpoint paths like /tools, /categories, or /search.
Limits are enforced per API key per 60-second window. When exceeded, a 429 is returned. The remaining count resets automatically each minute.
X-RateLimit-LimitMax requests/min for your plan
X-RateLimit-RemainingRequests left in this window
X-RateLimit-ResetUnix timestamp for window reset
429 Response
| 1 | { |
| 2 | "error": "Rate limit exceeded. Max 60 requests per minute.", |
| 3 | "code": "RATE_LIMIT_EXCEEDED" |
| 4 | } |
All responses are Content-Type: application/json. List endpoints wrap results in a data array with a meta pagination object. Single-item endpoints wrap in data. Errors include error and code fields.
Respuesta de lista
| 1 | { |
| 2 | "data": [ /* array of items */ ], |
| 3 | "meta": { |
| 4 | "page": 1, |
| 5 | "per_page": 20, |
| 6 | "total": 312, |
| 7 | "total_pages": 16 |
| 8 | } |
| 9 | } |
Respuesta de error
| 1 | { |
| 2 | "error": "Human-readable message", |
| 3 | "code": "MACHINE_READABLE_CODE" |
| 4 | } |
5 endpoints. Todos de solo lectura (GET). Haz clic en cualquier fila para ver parámetros y ejemplos de código.
All error responses follow the same shape with an HTTP status code, human-readable error string, and machine-readable code.
| Estado | Etiqueta | Descripción |
|---|---|---|
200 | OK | Request succeeded. |
400 | Bad Request | Malformed query parameters. |
401 | Unauthorized | Missing, invalid, or revoked API key. |
404 | Not Found | The requested resource does not exist. |
429 | Too Many Requests | Rate limit exceeded for your plan. |
500 | Internal Server Error | Something went wrong on our end. |
Comienza en menos de 5 minutos.
Obtener una clave API
Contáctanos para obtener una clave API. Las claves se entregan por email con el prefijo sk_.
Hacer tu primera solicitud
| 1 | curl "https://bnkmsvdtubbrqtdqoukb.supabase.co/functions/v1/public-api/api/v1/tools?per_page=3" \ |
| 2 | -H "X-API-Key: sk_your_api_key_here" |
Construir tu integración
| 1 | # Search and filter in one go |
| 2 | curl "https://bnkmsvdtubbrqtdqoukb.supabase.co/functions/v1/public-api/api/v1/search?q=writing+assistant&limit=5" \ |
| 3 | -H "X-API-Key: sk_your_api_key_here" |
All plans include full access to all 5 endpoints.
Obtén tu clave API en minutos.