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

# Quickstart

> Get started with OLIVE integration

# Quickstart

Get OLIVE running and make your first API call in 5 minutes.

## Prerequisites

* Docker and Docker Compose
* cURL or API client

## 1. Start Services

```bash theme={null}
git clone https://github.com/EmmanuelKeifala/olive.git
cd olive
docker compose up -d --build gateway wallet-core agent
```

## 2. Verify Health

```bash theme={null}
curl http://localhost:8080/health
```

## 3. Your First API Call

### Check Balance

```bash theme={null}
curl -X GET "http://localhost:8080/api/v1/balance/user123" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

### Create Payment

```bash theme={null}
curl -X POST "http://localhost:8080/api/v1/payments" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "user_id": "user123",
    "recipient": "user456",
    "amount": 5000,
    "currency": "SLE"
  }'
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Register Subscribers" icon="user-plus" href="/guides/subscriber-registration">
    User registration guide
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Complete API documentation
  </Card>
</CardGroup>
