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

# Kua API

> Integrate payroll, wallets, and payments into your own systems.

The Kua API lets your company's engineers work with your Kua data
programmatically — list and create payroll runs, add employees, and receive
real-time events via webhooks. It's a REST API with predictable, resource-oriented
URLs, JSON request and response bodies, and standard HTTP status codes.

<Card title="Quickstart" icon="bolt" href="/quickstart" horizontal>
  Create a key and make your first authenticated request in a few minutes.
</Card>

## Base URL

```
https://api.kuahr.com
```

Every endpoint on the public API is versioned under `/v1`.

## What you can do today

<CardGroup cols={2}>
  <Card title="Payroll" icon="money-check-dollar">
    List runs and create a draft run from your roster.
  </Card>

  <Card title="Employees" icon="users">
    Add employees to your company.
  </Card>

  <Card title="Events" icon="clock-rotate-left">
    Poll the event timeline, or receive events via webhooks.
  </Card>

  <Card title="Webhooks" icon="bolt">
    Signed, retried, at-least-once delivery of events to your endpoints.
  </Card>
</CardGroup>

## Official SDKs

<CardGroup cols={2}>
  <Card title="Node.js / TypeScript" icon="node-js" href="/sdks/node">
    `npm install @kua/node`
  </Card>

  <Card title="Python" icon="python" href="/sdks/python">
    `pip install kua`
  </Card>
</CardGroup>

<Note>
  The API is scoped to a single company — the one that owns the API key. It is for
  a company integrating **its own** Kua data, not for accessing other businesses.
</Note>
