API Reference
Overview
The Fabitin API is a RESTful API that provides access to all Fabitin platform features. It's built with Hono and runs on the Edge network for optimal performance.
Quick Links
- API Reference Documentation - Complete API reference with all endpoints
- SDK Documentation - TypeScript SDK for easy integration
- Authentication Guide - Learn about authentication methods
- Rate Limiting - Understand API usage limits
- Error Handling - Common errors and how to handle them
Base URL
bash
https://api.fabitin.comAuthentication
All API requests require authentication using an API key. Include your API key in the Authorization header:
bash
Authorization: Bearer your-api-keyLearn more about authentication →
SDK Usage
We recommend using our official TypeScript SDK for the best development experience:
bash
pnpm add @fabitin/sdktypescript
import { createClient } from '@fabitin/sdk';
const client = createClient({
apiKey: 'your-api-key'
});
// Use the client
const result = await client.dxf.analyze(file);Examples
Check out our examples for common use cases and integration patterns.
Support
- GitHub Issues - Report bugs or request features
- Discord Community - Get help from the community
- Email Support - Contact our support team