> ## Documentation Index
> Fetch the complete documentation index at: https://orwel-22af1265.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Welcome to Orwel API documentation

## Welcome to Orwel API

Orwel provides a powerful public API to access your workspace data programmatically. Build integrations, automate workflows, and extend Orwel's capabilities with our RESTful API.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get your API up and running in under 5 minutes
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore all available endpoints and their parameters
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    Learn how to authenticate your API requests
  </Card>

  <Card title="Rate Limiting" icon="gauge" href="/concepts/rate-limiting">
    Understand rate limits and best practices
  </Card>
</CardGroup>

## Key Features

<AccordionGroup>
  <Accordion icon="shield" title="Workspace Isolation">
    Every API request is automatically scoped to your workspace. You can only access data that belongs to your organization, ensuring complete data isolation and security.
  </Accordion>

  <Accordion icon="bolt" title="Rate Limiting">
    Production keys support 1000 requests per minute, while development keys allow 100 requests per minute. All responses include rate limit headers.
  </Accordion>

  <Accordion icon="list" title="Pagination">
    All list endpoints support pagination with customizable limit and offset parameters. Maximum of 100 items per request.
  </Accordion>

  <Accordion icon="filter" title="Advanced Filtering">
    Filter results by various parameters including dates, sources, and custom fields to get exactly the data you need.
  </Accordion>
</AccordionGroup>

## Base URL

All API requests should be made to:

```
https://api.orwel.io/api/v1
```

For local development:

```
http://localhost:5173/api/v1
```

## Need Help?

<CardGroup cols={2}>
  <Card title="Support" icon="envelope" href="mailto:support@orwel.io">
    Email our support team
  </Card>

  <Card title="Community" icon="slack" href="https://orwel.io/community">
    Join our Slack community
  </Card>
</CardGroup>
