> For the complete documentation index, see [llms.txt](https://docs.lsports.eu/u/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lsports.eu/u/trade/integration/apis.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
