Free, public JSON API for accessing our curated AI tools directory. Build integrations, dashboards, or tools on top of our data.
All API endpoints are read-only (GET) and return JSON. No authentication is required.
Base URL: https://solaire.tools/api/v1
All endpoints are rate-limited to 100 requests per hour per IP address. Rate limit headers are included in every response:
X-RateLimit-Limit - Maximum requests per windowX-RateLimit-Remaining - Requests remaining in current windowX-RateLimit-Reset - Unix timestamp when the window resetsAll endpoints support CORS with Access-Control-Allow-Origin: *, so you can call them directly from browser JavaScript.
List all tools with optional filtering and pagination.
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number (default: 1, 50 items per page) |
category | string | Filter by category slug (e.g., chatbots) |
pricing | string | Filter by pricing model: free, freemium, paid, open-source, enterprise, usage-based |
tag | string | Filter by tag (e.g., conversational-ai) |
featured | boolean | Set to true to return only featured tools |
curl https://solaire.tools/api/v1/tools?category=chatbots&page=1
{
"meta": {
"total": 45,
"page": 1,
"pageSize": 50,
"totalPages": 1,
"generated": "2026-03-18T00:00:00.000Z",
"site": "https://solaire.tools",
"documentation": "https://solaire.tools/api"
},
"data": [
{
"slug": "chatgpt",
"name": "ChatGPT",
"tagline": "OpenAI's conversational AI assistant",
"category": "chatbots",
"pricing": "freemium",
"rating": 4.6,
"featured": true,
"detailUrl": "https://solaire.tools/tool/chatgpt",
"apiUrl": "https://solaire.tools/api/v1/tools/chatgpt"
}
]
}
Get full details for a single tool by its slug.
curl https://solaire.tools/api/v1/tools/claude
Returns a single tool object with all fields including plans, alternatives, community sentiment, and related links.
List all categories with tool counts and subcategories.
curl https://solaire.tools/api/v1/categories
{
"meta": {
"total": 15,
"totalTools": 550,
"generated": "2026-03-18T00:00:00.000Z"
},
"data": [
{
"slug": "chatbots",
"name": "Chatbots & Assistants",
"icon": "💬",
"toolCount": 45,
"subcategories": [
{ "slug": "general-purpose", "name": "General Purpose AI Chatbots" }
]
}
]
}
Search tools by name, tagline, tags, and description. Results are ranked by relevance.
| Parameter | Type | Description |
|---|---|---|
q | string | Required. Search query |
page | integer | Page number (default: 1, 50 items per page) |
curl "https://solaire.tools/api/v1/search?q=coding"
Subscribe to our RSS feeds to stay updated:
Both feeds follow the RSS 2.0 specification and include Atom self-links for feed reader compatibility.
This API is free to use for personal projects, research, and non-commercial applications. If you plan to use it in a commercial product, please contact us first.
Please respect the rate limits and cache responses on your end when possible.