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

# Introduction

> Learn how to easily integrate AI-powered data extraction into your applications.

<Note>
  Before you begin!<br />
  Visit the [Wetrocloud console](https://wetrocloud.com/console) to get your API key. If you have trouble obtaining it, refer to this [guide](/how-to-access-your-API-Key).
</Note>

The WetroCloud API provides powerful data extraction capabilities that allow you to extract structured data from any website using AI. Simply provide a URL, describe what you want to extract, and define your desired output schema.

### Sample Requests

We provide sample API calls next to each method, using cURL, Python, and JavaScript. Simply replace the placeholders with your specific parameters and test the calls directly.

<Warning>
  Important! <br />Always prefix your API key with `Token ` (including a space). Example: `Token YOUR_API_KEY`. Requests without this format will be rejected.
</Warning>

## Getting Started

The API is designed to be simple and straightforward:

1. **Authenticate**: Include your API key in the `Authorization` header
2. **Make a request**: Send a POST request with your extraction parameters
3. **Receive structured data**: Get back JSON-formatted data matching your schema

## Base URL

All API endpoints are prefixed with:

```
https://api.wetrocloud.com
```

## Authentication

All requests require authentication using an API key. Include it in the `Authorization` header:

```bash theme={null}
Authorization: Token YOUR_API_KEY
```

## Rate Limits

Please refer to your plan details in the [Wetrocloud Console](https://wetrocloud.com/console) for rate limit information.
