BuiltSimple API Documentation
Powerful knowledge APIs that actually work. Built for developers by developers.
2 APIs Live
3 APIs Coming Soon
99.9% Uptime
🚀 Get Started in 60 Seconds
Choose an API, grab your key, start building. It's that simple.
1
Choose your API
2
Get your API key
3
Make your first call
4
Build amazing things
🔑 Authentication
All API requests require authentication using your API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
cURL
JavaScript
Python
bash
curl -X POST "https://fixitapi.built-simple.ai/search" \
-H "Authorization: Bearer fix_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"query": "react hooks useState"}'
javascript
const response = await fetch('https://fixitapi.built-simple.ai/search', {
method: 'POST',
headers: {
'Authorization': 'Bearer fix_live_your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
query: 'react hooks useState'
})
});
const data = await response.json();
console.log(data);
python
import requests
response = requests.post(
'https://fixitapi.built-simple.ai/search',
headers={
'Authorization': 'Bearer fix_live_your_api_key',
'Content-Type': 'application/json'
},
json={'query': 'react hooks useState'}
)
data = response.json()
print(data)
🔧 FixItAPI
Search 50M+ Stack Overflow posts and get the most relevant coding solutions instantly.
POST
https://fixitapi.built-simple.ai/search
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Required | Your search query (e.g., "react hooks useState") |
| limit | integer | Optional | Number of results to return (default: 10, max: 50) |
| include_code | boolean | Optional | Include code snippets in results (default: true) |
🔴 Try FixItAPI Live
Example Response
{
"query": "react hooks useState",
"results": [
{
"id": 14540263,
"question_title": "React Hook useState is called in function app",
"answer_score": 634,
"is_accepted": true,
"preview": "Try to capitalize 'app' like const App = props => {...}",
"code": "const App = props => {...}\n\nexport default App;",
"url": "https://stackoverflow.com/questions/55846641",
"confidence": 0.72
}
],
"total": 10,
"search_time_ms": 45,
"quality_score": 0.91
}
💬 ChatStash
Search your entire ChatGPT conversation history with AI-powered semantic search.
POST
https://chatstash.built-simple.ai/search
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Required | What you're looking for in your conversations |
| date_range | object | Optional | Date range to search within (from/to) |
| category | string | Optional | Filter by category (coding, creative, business, etc.) |
🔴 Try ChatStash Live
⚡ Rate Limits
All paid plans include unlimited API calls. No rate limiting, no overage fees.
| Plan | Rate Limit | Burst Limit | Price |
|---|---|---|---|
| Free Trial | 50 requests/day | 10 requests/minute | Free |
| Individual Plan | Unlimited | 1000 requests/minute | $9-19/month |
| Bundle Plan | Unlimited | 5000 requests/minute | $79/month |
📦 SDKs & Libraries
Official SDKs and community libraries to get you started quickly.
JavaScript/Node.js
Python
Go
PHP
bash
npm install @builtsimple/api-client
javascript
import { BuiltSimple } from '@builtsimple/api-client';
const client = new BuiltSimple('your_api_key');
// Search Stack Overflow
const results = await client.fixitapi.search('react hooks');
// Search ChatGPT history
const conversations = await client.chatstash.search('python tutorial');
bash
pip install builtsimple
python
from builtsimple import BuiltSimple
client = BuiltSimple(api_key='your_api_key')
# Search Stack Overflow
results = client.fixitapi.search('django models')
# Search ChatGPT history
conversations = client.chatstash.search('machine learning')
bash
go get github.com/builtsimple/go-sdk
go
package main
import (
"github.com/builtsimple/go-sdk"
)
func main() {
client := builtsimple.NewClient("your_api_key")
results, err := client.FixItAPI.Search("goroutines")
if err != nil {
panic(err)
}
}
bash
composer require builtsimple/php-sdk
php
fixitapi->search('laravel eloquent');
$conversations = $client->chatstash->search('php best practices');