dofusdude
- API version: 1.0.0
- Build date: 2026-03-08T21:53:54.204931554Z[Etc/UTC]
- Generator version: 7.21.0-SNAPSHOT
The all-in-one toolbelt for your next Ankama related project.
- Javascript
npm i dofusdude-js --save - Typescript
npm i dofusdude-ts --save - Go
go get -u github.com/dofusdude/dodugo - Python
pip install dofusdude - Java Maven with GitHub packages setup
Everything, including this site, is generated out of the Docs Repo. Consider it the Single Source of Truth. If there is a problem with the SDKs, create an issue there.
Your favorite language is missing? Please let me know!
-
🥷 Seamless Auto-Update load data in the background when a new Dofus version is released and serving it within 10 minutes with atomic data source switching. No downtime and no effects for the user, just always up-to-date.
-
⚡ Blazingly Fast all data in-memory, aggressive caching over short time spans, HTTP/2 multiplexing, written in Go, optimized for low latency, hosted on bare metal in 🇩🇪.
-
📨 Almanax Discord Integration Use the endpoints as a dev or the official Web Client as a user.
-
🩸 Dofus 3 Beta from stable to bleeding edge by replacing /dofus3 with /dofus3beta.
-
🗣️ Multilingual supporting en, fr, es, pt, de.
-
🧠 Search by Relevance allowing typos in name and description, handled by language specific text analysis and indexing.
-
🕵️ Official Sources generated from actual data from the game.
... and much more on the Roadmap on my Discord.
For more information, please visit https://discord.gg/3EtHskZD8h
Automatically generated by the OpenAPI Generator
Building the API client library requires:
- Java 1.8+
- Maven (3.8.3+)/Gradle (7.2+)
To install the API client library to your local Maven repository, simply execute:
mvn clean installTo deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
mvn clean deployRefer to the OSSRH Guide for more information.
Add this dependency to your project's POM:
<dependency>
<groupId>com.dofusdude</groupId>
<artifactId>dofusdude-java</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>Add this dependency to your project's build file:
repositories {
mavenCentral() // Needed if the 'dofusdude-java' jar has been published to maven central.
mavenLocal() // Needed if the 'dofusdude-java' jar has been published to the local maven repo.
}
dependencies {
implementation "com.dofusdude:dofusdude-java:1.0.0"
}At first generate the JAR by executing:
mvn clean packageThen manually install the following JARs:
target/dofusdude-java-1.0.0.jartarget/lib/*.jar
Please follow the installation instruction and execute the following Java code:
// Import classes:
import com.dofusdude.client.ApiClient;
import com.dofusdude.client.ApiException;
import com.dofusdude.client.Configuration;
import com.dofusdude.client.model.*;
import com.dofusdude.client.api.AlmanaxApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://api.dofusdu.de");
AlmanaxApi apiInstance = new AlmanaxApi(defaultClient);
String language = "en"; // String | code
LocalDate date = LocalDate.parse("Sat Jan 25 00:00:00 UTC 2025"); // LocalDate | yyyy-mm-dd
Integer level = 56; // Integer | character level for the reward_xp field
try {
Almanax result = apiInstance.getAlmanaxDate(language, date, level);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AlmanaxApi#getAlmanaxDate");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}All URIs are relative to https://api.dofusdu.de
- Almanax
- AlmanaxBonus
- AlmanaxTribute
- AlmanaxTributeItem
- AlmanaxWebhook
- AlmanaxWebhookDailySettings
- Condition
- ConditionLeaf
- ConditionNode
- ConditionRelation
- CreateAlmanaxWebhook
- CreateAlmanaxWebhookDailySettings
- CreateAlmanaxWebhookMentionsValueInner
- CreateRSSWebhook
- CreateTwitterWebhook
- Effect
- EffectType
- Equipment
- EquipmentSet
- Error
- GameSearch
- GameSearchItem
- GameSearchType
- GetMetaAlmanaxBonuses200ResponseInner
- GetMetaWebhooksTwitter200Response
- Images
- ItemSubtype
- ListEquipmentSet
- ListEquipmentSets
- ListItem
- ListItemGeneral
- ListItems
- ListMounts
- Mount
- MountFamily
- PagedLinks
- PutAlmanaxWebhook
- PutRSSWebhook
- PutTwitterWebhook
- Range
- Recipe
- Resource
- RssWebhook
- TranslatedId
- TwitterWebhook
- Version
- Weapon
Endpoints do not require authorization.
It's recommended to create an instance of ApiClient per thread in a multithreaded environment to avoid any potential issues.
