Unified API platform powering TheClapty's ecosystem. Access store data, GitHub projects, Discord integrations, and more through a single, powerful API.
// Initialize API client
const api = new TheClaptyAPI({
apiKey: 'YOUR_API_KEY',
baseUrl: 'https://api.theclapty.xyz'
});
// Fetch store products
const products = await api.store.getProducts();
// Get GitHub projects
const projects = await api.github.getProjects('TheClapty');
Access all TheClapty services through one unified API
Manage products, orders, and transactions for TheClapty Store. Full CRUD operations with Discord integration.
Access TheClapty's GitHub repositories, commits, and project information. Real-time data from GitHub GraphQL API.
Integrate with TheClapty's Discord bot and server. OAuth, webhooks, and custom commands.
Various developer utilities including image processing, QR generation, URL shortening, and more.
Comprehensive endpoint reference
Retrieve all products from the store
curl -X GET "https://api.theclapty.xyz/store/products" \
-H "X-API-KEY: your_api_key"
{
"success": true,
"data": [
{
"id": 1,
"title": "ESX Job System Pro",
"price": 49.99,
"category": "fivem"
}
]
}
Get specific order details by Order ID
id (required) - Order ID to retrieveCreate a manual transaction/order
Update existing order details
Delete an order from the system
Get all public repositories from TheClapty's GitHub
{
"success": true,
"data": {
"repositories": [...],
"total": 24,
"lastUpdated": "2025-12-29T10:30:00Z"
}
}
Get TheClapty's GitHub profile information
Test API endpoints in real-time
// Response will appear here...
Access the full API documentation and start integrating today