> For the complete documentation index, see [llms.txt](https://zauctionhouse.groupez.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zauctionhouse.groupez.dev/development-portal/informations.md).

# Informations

JavaDoc: [https://javadocs.groupez.dev/zauctionhousev3](https://javadocs.groupez.xyz/zauctionhousev3)

JitPack: [https://jitpack.io/#Maxlego08/zAuctionHouseV3-API/](https://jitpack.io/#Maxlego08/zAuctionHouseV3-API/3.1.4.5)

## Maven

```markup
<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

<dependencies>
	<dependency>
		<groupId>com.github.Maxlego08</groupId>
		<artifactId>zAuctionHouseV3-API</artifactId>
		<version>3.2.1.9</version>
		<scope>provide</scope>
	</dependency>
</dependencies>
```

## Gradle

```c
dependencyResolutionManagement {
	repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
	repositories {
		mavenCentral()
		maven { url 'https://jitpack.io' }
	}
}
dependencies {
        implementation 'com.github.Maxlego08:3.2.1.9'
}
```

## First step

You will be able to retrieve the plugin's interfaces this way:

```java
@Override
public void onEnable() {
	AuctionManager auctionManager = getProvider(AuctionManager.class);
	InventoryManager inventoryManager = getProvider(InventoryManager.class);
	CategoryManager categoryManager = getProvider(CategoryManager.class);
	TransactionManager transactionManager = getProvider(TransactionManager.class);
	ConvertManager convertManager = getProvider(ConvertManager.class);
	FilterManager filterManager = getProvider(FilterManager.class);
	StoreManager storageManager = getProvider(StoreManager .class);
	IBlacklistManager blacklistManager = getProvider(IBlacklistManager.class);
}

private <T> T getProvider(Class<T> classz) {
	RegisteredServiceProvider<T> provider = getServer().getServicesManager().getRegistration(classz);
	if (provider == null) 
		return null;
	return provider.getProvider() != null ? (T) provider.getProvider() : null;
}
```

Then you just have to look in the javadoc for the elements you need. Nevertheless, if you need help with the API don't hesitate to come to the discord to ask for help.


---

# 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:

```
GET https://zauctionhouse.groupez.dev/development-portal/informations.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.
