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

# Banking API Overview

> Introduction to the Conta Digital Public API for account management, transactions, and PIX operations

# Banking API

The Conta Digital Public API provides programmatic access to banking operations including account management, balance inquiries, transaction history, and PIX transfers.

## Base URL

All API requests should be made to:

```
https://conta-public-api.kiwify.com
```

<Note>
  For development and testing, use the development environment:
  `https://conta-public-api-dev.kiwify.com`
</Note>

## API Versioning

The API uses URL path versioning. Current version is `v1`. All versioned endpoints are prefixed with `/v1/`.

## Error Format

All errors follow a consistent JSON format:

```json theme={null}
{
  "error": {
    "code": "error_code",
    "message": "Human-readable error description",
    "details": {}
  },
  "timestamp": "2024-01-15T10:30:00Z"
}
```

### Common HTTP Status Codes

| HTTP Status | Description                                                                        |
| ----------- | ---------------------------------------------------------------------------------- |
| 200         | Success                                                                            |
| 401         | Authentication failed - invalid signature, expired timestamp, or invalid access ID |
| 403         | Access denied - IP not in allowlist or insufficient permissions                    |
| 404         | Resource not found                                                                 |
| 500         | Internal server error                                                              |

## Next Steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/api-reference/banking/authentication">
    Learn how to authenticate using EdDSA Proof-of-Possession
  </Card>

  <Card title="API Endpoints" icon="code" href="/api-reference/banking/endpoints/account">
    Explore the available API endpoints
  </Card>
</CardGroup>
