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

# API Reference

> Browse interactive API documentation for all iDenfy endpoints including KYC, KYB, AML, and bank verification with a built-in playground.

## Interactive API Playground

All endpoints are documented with request/response schemas and an interactive playground. Use the **sidebar** to navigate between API sections:

* **Identity Verification** — session creation, status retrieval, webhooks
* **Business Verification** — company management, document ordering, registry checks
* **AML Screening** — single checks, monitoring, PDF reports
* **Bank Verification** — token creation, account transactions

## Authentication

All endpoints require **HTTP Basic Auth** with your API key and secret:

```bash theme={"system"}
curl -X POST https://ivs.idenfy.com/api/v2/token \
  -u "API_KEY:API_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"clientId": "user-123"}'
```

See [Authentication](/authentication) for details.

## Base URL

```
https://ivs.idenfy.com
```

Same URL for sandbox and production — your API key determines the mode. See [Environments](/environments).

## Integration Guides

For step-by-step integration instructions (not just endpoint reference), see:

| Product                     | Guide                                          |
| --------------------------- | ---------------------------------------------- |
| ID Verification (KYC)       | [KYC Overview →](/kyc/overview)                |
| Business Verification (KYB) | [KYB Overview →](/kyb/overview)                |
| AML Screening               | [AML Overview →](/aml/overview)                |
| Bank Verification           | [Bank Overview →](/bank-verification/overview) |
