> 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/sdk/sdk-installation-guide-java.md).

# SDK Installation - Java

Welcome to the **TRADE Java SDK**! This SDK allows you to easily integrate with LSports' TRADE services in your Java applications. This guide will walk you through the steps to install and start using the SDK in your project.

### Artifact Details <a href="#artifact-details" id="artifact-details"></a>

* **Group ID:** `eu.lsports`
* **Artifact ID:** `trade360-java-sdk`
* **Latest Version:** [Check Latest on Sonatype](https://central.sonatype.com/artifact/eu.lsports/trade360-java-sdk)

### Installation <a href="#installation" id="installation"></a>

Depending on your build tool, follow the appropriate steps below:

#### **Using Maven**

Add the following dependency to your `pom.xml` file:

```xml
<dependency>
    <groupId>eu.lsports</groupId>
    <artifactId>trade360-java-sdk</artifactId>
    <version>PUT_LATEST_VERSION_HERE</version>
</dependency>
```

*Replace* `PUT_LATEST_VERSION_HERE` *with the latest version available on* [*Sonatype Central*](https://central.sonatype.com/artifact/eu.lsports/trade360-java-sdk) *(e.g.,* `1.0.3`*).*

### Documentation <a href="#documentation" id="documentation"></a>

* You can find the ReadMe file [here](https://github.com/lsportsltd/trade360-java-sdk)
* API Reference and usage examples are available in the [SDK's git repository](https://github.com/lsportsltd/trade360-java-sdk/tree/main/samples/trade360-samples)
* For detailed integration assistance, please contact our support team or refer to our developer portal.


---

# 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/sdk/sdk-installation-guide-java.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.
