> ## Documentation Index
> Fetch the complete documentation index at: https://developers.factify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Factify Developer Portal

> APIs for organization management, workflow orchestration, usage controls, and agent-backed extraction.

# Factify API

Use the Factify API to manage organizations, API keys, workflow plans, usage controls, and extraction workflows.

```typescript theme={null}
import { Factify } from "@factify/sdk";

const factify = new Factify({ bearerAuth: process.env.FACTIFY_KEY });

const me = await factify.users.getCurrent();
console.log(me);
```

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/guides/authentication">
    Configure API keys and request authentication.
  </Card>

  <Card title="API Reference" icon="book" href="/api-reference">
    Browse current REST endpoints.
  </Card>
</CardGroup>
