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

# Getting Started

> API documentation for TKT Church digital services

Welcome to TKT Church's API documentation. This API powers TKT Church's digital services, enabling programmatic access to church events, livestreams, newsletters, and member services.

## Available Services

<CardGroup>
  <Card title="Events" icon="calendar-days">
    Access TKT Church events, attendance tracking, and registration systems.
  </Card>

  <Card title="Live Streaming" icon="video">
    Connect with TKT Church's streaming services and engagement features.
  </Card>

  <Card title="Newsletters" icon="envelope">
    Access TKT Church's newsletter system and communications.
  </Card>

  <Card title="Members" icon="users">
    Interact with TKT Church's member database and permissions.
  </Card>
</CardGroup>

## Getting Started

### Base URL

All TKT Church API requests use:

```bash theme={null}
https://api.tktchurch.com/v1
```

### Authentication

Include authentication token in requests:

```bash theme={null}
Authorization: Bearer YOUR_TOKEN
```

<Note>
  Read the [authentication guide](/api-reference/endpoint/authentication/login) for implementation details.
</Note>

### Response Format

API responses follow this format:

```json theme={null}
{
  "data": {
    // Response content
  },
  "pagination": {
    "total": 100,
    "limit": 10,
    "offset": 0,
    "hasMore": true
  }
}
```

## Access Levels

<CardGroup cols={2}>
  <Card title="Standard Access" icon="church">
    1,000 requests per hour
    For general integrations
  </Card>

  <Card title="Enhanced Access" icon="cross">
    10,000 requests per hour
    For high-volume integrations
  </Card>
</CardGroup>

## API Features

<AccordionGroup>
  <Accordion icon="key" title="Authentication">
    Secure access to TKT Church's digital services.
  </Accordion>

  <Accordion icon="calendar" title="Events">
    Access and manage TKT Church events and registrations.
  </Accordion>

  <Accordion icon="video" title="Live Streaming">
    Integration with TKT Church's streaming platform.
  </Accordion>

  <Accordion icon="envelope" title="Newsletters">
    Access TKT Church's communication systems.
  </Accordion>

  <Accordion icon="mobile" title="Devices">
    Manage device access to TKT Church services.
  </Accordion>
</AccordionGroup>

## Version Information

Current version: `v1`

* Maintains system stability
* Provides advance notice of changes
* Includes update guidance when needed
