# APIs

This section documents the REST APIs available for TRADE integration, including metadata retrieval, subscription management, and snapshot requests.

## Base URL

```
https://stm-api.lsports.eu
```

## Authentication

All API requests require authentication via request body:

```json
{
  "PackageId": "YOUR_PACKAGE_ID",
  "UserName": "YOUR_USERNAME",
  "Password": "YOUR_PASSWORD"
}
```

## Available APIs

### Core APIs

| API                                                       | Endpoint          | Description                                           |
| --------------------------------------------------------- | ----------------- | ----------------------------------------------------- |
| [Metadata](/u/trade/integration/apis/metadata.md)         | `/Metadata/*`     | Retrieve sports, markets, locations, and competitions |
| [Subscription](/u/trade/integration/apis/subscription.md) | `/Subscription/*` | Manage fixture subscriptions and orders               |
| [Distribution](/u/trade/integration/apis/distribution.md) | `/Distribution/*` | Control RabbitMQ feed distribution                    |
| [Snapshot](/u/trade/integration/apis/snapshot.md)         | `/Snapshot/*`     | Request full data snapshots                           |

### Reference

| Topic                                                                             | Description                  |
| --------------------------------------------------------------------------------- | ---------------------------- |
| [API Pagination](/u/trade/integration/apis/api-pagination.md)                     | Handling paginated responses |
| [Notes & Troubleshooting](/u/trade/integration/apis/notes-and-troubleshooting.md) | Common issues and solutions  |

## Response Format

All APIs return responses in the following format:

```json
{
  "Header": {
    "HttpStatusCode": 200
  },
  "Body": {
    // Response data
  }
}
```

## Rate Limits

* Standard rate limit: 60 requests per minute
* Snapshot requests: 10 requests per minute


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lsports.eu/u/trade/integration/apis.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
