Integrate AI Directory's comprehensive database into your applications. Access tools, categories, and reviews through our RESTful API.
Get started with our API in minutes
https://api.aidirectory.wiki/v1
All API requests require an API key. Include it in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Sign up for a free account to get your API key and start building.
Explore our comprehensive API endpoints
Retrieve a list of AI tools with optional filtering and pagination.
category
Filter by category slug
search
Search in name and description
pricing
Filter by pricing model
page
Page number (default: 1)
limit
Items per page (default: 20)
GET /v1/tools?category=writing&search=content&page=1&limit=10
Retrieve detailed information about a specific AI tool.
slug
Tool's unique slug identifier
GET /v1/tools/chatgpt
Retrieve a list of all available categories and subcategories.
parent
Filter by parent category
include_tools
Include tool count (boolean)
GET /v1/categories?include_tools=true
All API responses follow a consistent JSON format
{
"success": true,
"data": {
"tools": [...],
"pagination": {
"page": 1,
"limit": 20,
"total": 150,
"pages": 8
}
},
"message": "Tools retrieved successfully"
}
{
"success": false,
"error": {
"code": "INVALID_API_KEY",
"message": "The provided API key is invalid",
"details": "Please check your API key and try again"
}
}
Fair usage policies to ensure optimal performance for all users
requests per month
requests per month
requests per month
Every API response includes rate limit information in the headers:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1640995200
Official SDKs and community libraries for popular programming languages
Official Python SDK
pip install aidirectory
Official Node.js SDK
npm install aidirectory
Official Go SDK
go get aidirectory
Our developer support team is here to help you integrate our API successfully.