Skip to content

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.

Base URL

bash
https://api.fabitin.com

Authentication

All API requests require authentication using an API key. Include your API key in the Authorization header:

bash
Authorization: Bearer your-api-key

Learn more about authentication →

SDK Usage

We recommend using our official TypeScript SDK for the best development experience:

bash
pnpm add @fabitin/sdk
typescript
import { createClient } from '@fabitin/sdk';

const client = createClient({
  apiKey: 'your-api-key'
});

// Use the client
const result = await client.dxf.analyze(file);

Learn more about the SDK →

Examples

Check out our examples for common use cases and integration patterns.

Support

Released under the MIT License.