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

# Introduction

> DataGyro API Documentation

<Note>
  Welcome to DataGyro's official API documentation. This guide will help you
  integrate with our platform efficiently.
</Note>

## Welcome to DataGyro API

DataGyro provides a powerful API to integrate its capabilities into your applications. Our API is designed to be simple yet flexible, allowing you to access and analyze data quickly and efficiently.

<Card title="DataGyro API Specification" icon="database" href="/api-reference/openapi.json">
  View the complete OpenAPI specification file
</Card>

## Getting Started

DataGyro's API enables you to perform queries against our datasets. The primary endpoint allows you to search for specific information within your authorized datasets.

### Basic Query Example

Here's a simple example of how to query our API:

```bash theme={null}
curl --request POST \
  --url https://platform.datagyro.com/v1/ENDPOINT \
  --header 'Content-Type: application/json' \
  --header 'apikey: YOUR_API_KEY' \
  --data '{}'
```

## Authentication

All API endpoints are authenticated using API keys. You'll need to include your API key in the request header.

```json theme={null}
{
  "apikey": "YOUR_API_KEY"
}
```

Your API key is unique to your account and should be kept secure. Do not share your API key or expose it in client-side code.

<Card title="Authentication Guide" icon="key" href="/documentation/authentication">
  Learn how to create and manage your API tokens
</Card>

## Rate Limits

Please be mindful of our rate limits to ensure service availability for all users. Contact us if you need higher limits for your use case.

<Card title="Need Help?" icon="headset" href="https://platform.datagyro.com/support">
  Contact our support team
</Card>
