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

# Zenoo Documentation

> Everything you need to automate KYC, KYB, and AML compliance.

Build and manage compliance workflows with Studio, then review results in Case Management.

<CardGroup cols={2}>
  <Card title="Product Guides" icon="wand-magic-sparkles" href="/guides/studio">
    Learn how to build verification flows in Studio and review cases in Case Management.
  </Card>

  <Card title="Developer Docs" icon="code" href="/getting-started/overview">
    Integrate Zenoo via API — authentication, endpoints, webhooks, and data models.
  </Card>

  <Card title="API Reference" icon="square-terminal" href="/api-reference/introduction">
    Full endpoint reference for Flows, Entities, Cases, Alerts, Checks, and more.
  </Card>

  <Card title="Resources" icon="book" href="/reference/error-codes">
    Error codes, status enums, glossary, test data, and go-live checklist.
  </Card>
</CardGroup>

## Popular guides

<CardGroup cols={3}>
  <Card title="Verify a Company" icon="building" href="/use-cases/kyb-verification">
    KYB verification with registry lookups, UBO discovery, and director screening.
  </Card>

  <Card title="Verify a Person" icon="user" href="/use-cases/kyc-verification">
    KYC verification with identity checks, document capture, and biometrics.
  </Card>

  <Card title="Screen for Sanctions" icon="shield-halved" href="/use-cases/screening">
    PEP, sanctions, adverse media, and watchlist screening with ongoing monitoring.
  </Card>
</CardGroup>

## Quick start

Send your first API request to create a verification case:

```bash theme={null}
curl -X POST https://api.zenoo.com/v1/cases \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "onboarding",
    "entity_category": "company",
    "external_reference": "customer-123"
  }'
```

<CardGroup cols={2}>
  <Card title="Make your first API call" icon="play" href="/getting-started/first-api-call">
    Step-by-step walkthrough of authentication, creating a case, and reading results.
  </Card>

  <Card title="Authentication" icon="key" href="/getting-started/authentication">
    API keys, token management, and security best practices.
  </Card>
</CardGroup>
