← Back to Productivity & Business

AI Agent Stack Builder

Build AI agent technology stacks

https://hub.toolweb.in/creative/ai-agent-stack-builder/

Endpoints

GET /

Root

POST /api/agent/stack

Generate Stack

Request Body (JSON)

{
  "formData": "<string>",
  "sessionId": "<string>",
  "userId": "<string>",
  "timestamp": "<string>"
}
GET /api/frameworks

Get Frameworks

GET /api/llms

Get Llms

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/creative/ai-agent-stack-builder/
# Python
import requests
r = requests.get("https://hub.toolweb.in/creative/ai-agent-stack-builder/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/creative/ai-agent-stack-builder/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.