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

# Getting Started

> Complete guide to integrating AnyCheck into your application

## Prerequisites

Before you begin, make sure you have:

<Steps>
  <Step title="Account & Credentials">
    Contact [bd@fintelite.ai](mailto:bd@fintelite.ai) to request access. Credentials and API keys are
    provided after contract signing.
  </Step>

  <Step title="Organization Setup">
    Ensure you're part of an organization with active groups
  </Step>

  <Step title="Service Access">
    Verify your group has access to verification services
  </Step>
</Steps>

## Your First API Call

Let's start by checking the API health:

```bash theme={null}
curl https://api.anycheck.ai/health
```

Response:

```json theme={null}
{
  "service": "anycheck-api",
  "status": "healthy",
  "timestamp": "2025-12-22T11:06:13Z",
  "version": "1.0.0"
}
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="lock" href="/anycheck/authentication">
    Detailed authentication workflow guide
  </Card>

  <Card title="Verifications" icon="check-circle" href="/anycheck/concepts/verifications">
    Learn about verification workflows
  </Card>

  <Card title="Verification Service" icon="list-check" href="/anycheck/concepts/verification-services">
    Learn about available verification services
  </Card>

  <Card title="API Reference" icon="code" href="/anycheck/api/overview">
    Explore all available endpoints
  </Card>
</CardGroup>
