You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/AlmanaxApi.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,19 @@ No authorization required
85
85
86
86
Almanax Range
87
87
88
-
Get a range of dates, defaults to today + 6 following days but can specified by the query parameters. filter[bonus_type] can be used seperately and does not have an effect on the other parameters. range[from] changes the start date, everything else defaults to 6 following dates from this start date. range[to] when used without anything else, it will use today as start date and this parameter as end. All ranges are inclusive. range[from] + range[to] = inclusive range over the specified dates, should never be farther apart than 35 days. range[from|to] + range[size] no need to specify the date, just following days with [from] (0 is today) or go backwards in time with only [to] and [size]. Not all combinations are listed but this should give you an idea how to they could work.
88
+
Get a range of dates, defaults to today + 6 following days but can specified by the query parameters.
89
+
90
+
filter[bonus_type] can be used seperately and does not have an effect on the other parameters.
91
+
92
+
range[from] changes the start date, everything else defaults to 6 following dates from this start date.
93
+
94
+
range[to] when used without anything else, it will use today as start date and this parameter as end. All ranges are inclusive.
95
+
96
+
range[from] + range[to] = inclusive range over the specified dates, should never be farther apart than 35 days.
97
+
98
+
range[from|to] + range[size] no need to specify the date, just following days with [from] (0 is today) or go backwards in time with only [to] and [size].
99
+
100
+
Not all combinations are listed but this should give you an idea how to they could work.
Retrieve all consumable items with one request. This endpoint is just an alias for the a list with disabled pagination (page[size]=-1) and all fields[type] set. If you want everything unfiltered, delete the other query parameters. Be careful with testing or (god forbid) using /all in your browser, the returned json is huge and will slow down the browser! Tip: set the HTTP Header 'Accept-Encoding: gzip' for saving bandwidth. You will need to uncompress it on your end. Example with cURL: ``` curl -sH 'Accept-Encoding: gzip' <api-endpoint> | gunzip - ```
18
+
Retrieve all consumable items with one request. This endpoint is just an alias for the a list with disabled pagination (page[size]=-1) and all fields[type] set.
19
+
20
+
If you want everything unfiltered, delete the other query parameters.
21
+
22
+
Be careful with testing or (god forbid) using /all in your browser, the returned json is huge and will slow down the browser!
23
+
24
+
Tip: set the HTTP Header 'Accept-Encoding: gzip' for saving bandwidth. You will need to uncompress it on your end.
@@ -43,7 +53,7 @@ with dofusdude.ApiClient(configuration) as api_client:
43
53
filter_min_level =150# int | only results which level is equal or above this value (optional)
44
54
filter_max_level =180# int | only results which level is equal or below this value (optional)
45
55
accept_encoding ='accept_encoding_example'# str | optional compression for saving bandwidth (optional)
46
-
filter_type_name_id = ['[\"boots\"]'] # List[str] | multi-filter results with the english type name. Add with \"wood\" or \"+wood\" and exclude with \"-wood\". (optional)
56
+
filter_type_name_id = ['[\"chest\"]'] # List[str] | multi-filter results with the english type name. Add with \"wood\" or \"+wood\" and exclude with \"-wood\". (optional)
Retrieve all cosmetic items with one request. This endpoint is just an alias for the a list with disabled pagination (page[size]=-1) and all fields[type] set. If you want everything unfiltered, delete the other query parameters. Be careful with testing or (god forbid) using /all in your browser, the returned json is huge and will slow down the browser! Tip: set the HTTP Header 'Accept-Encoding: gzip' for saving bandwidth. You will need to uncompress it on your end. Example with cURL: ``` curl -sH 'Accept-Encoding: gzip' <api-endpoint> | gunzip - ```
18
+
Retrieve all cosmetic items with one request. This endpoint is just an alias for the a list with disabled pagination (page[size]=-1) and all fields[type] set.
19
+
20
+
If you want everything unfiltered, delete the other query parameters.
21
+
22
+
Be careful with testing or (god forbid) using /all in your browser, the returned json is huge and will slow down the browser!
23
+
24
+
Tip: set the HTTP Header 'Accept-Encoding: gzip' for saving bandwidth. You will need to uncompress it on your end.
@@ -43,7 +53,7 @@ with dofusdude.ApiClient(configuration) as api_client:
43
53
filter_min_level =1# int | only results which level is equal or above this value (optional)
44
54
filter_max_level =5# int | only results which level is equal or below this value (optional)
45
55
accept_encoding ='accept_encoding_example'# str | optional compression for saving bandwidth (optional)
46
-
filter_type_name_id = ['[\"boots\"]'] # List[str] | multi-filter results with the english type name. Add with \"wood\" or \"+wood\" and exclude with \"-wood\". (optional)
56
+
filter_type_name_id = ['[\"ceremonial-wings\"]'] # List[str] | multi-filter results with the english type name. Add with \"wood\" or \"+wood\" and exclude with \"-wood\". (optional)
47
57
48
58
try:
49
59
# List All Cosmetics
@@ -211,7 +221,7 @@ with dofusdude.ApiClient(configuration) as api_client:
211
221
filter_min_level =1# int | only results which level is equal or above this value (optional)
212
222
filter_max_level =2# int | only results which level is equal or below this value (optional)
213
223
limit =8# int | maximum number of returned results (optional) (default to 8)
214
-
filter_type_name_id = ['[\"wings\"]'] # List[str] | multi-filter results with the english type name. Add with \"wood\" or \"+wood\" and exclude with \"-wood\". (optional)
224
+
filter_type_name_id = ['[\"ceremonial-wings\"]'] # List[str] | multi-filter results with the english type name. Add with \"wood\" or \"+wood\" and exclude with \"-wood\". (optional)
Retrieve all equipment items with one request. This endpoint is just an alias for the a list with disabled pagination (page[size]=-1) and all fields[type] set. If you want everything unfiltered, delete the other query parameters. Be careful with testing or (god forbid) using /all in your browser, the returned json is huge and will slow down the browser! Tip: set the HTTP Header 'Accept-Encoding: gzip' for saving bandwidth. You will need to uncompress it on your end. Example with cURL: ``` curl -sH 'Accept-Encoding: gzip' <api-endpoint> | gunzip - ```
18
+
Retrieve all equipment items with one request. This endpoint is just an alias for the a list with disabled pagination (page[size]=-1) and all fields[type] set.
19
+
20
+
If you want everything unfiltered, delete the other query parameters.
21
+
22
+
Be careful with testing or (god forbid) using /all in your browser, the returned json is huge and will slow down the browser!
23
+
24
+
Tip: set the HTTP Header 'Accept-Encoding: gzip' for saving bandwidth. You will need to uncompress it on your end.
Copy file name to clipboardExpand all lines: docs/MetaApi.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,9 @@ No authorization required
84
84
85
85
Available Item Types
86
86
87
-
Get all types of all items. Primarily used for filtering more detailed types in listings or search endpoints. All names are english for comparing them inside applications. Ordering is not guaranteed to persist with game updates.
87
+
Get all types of all items. Primarily used for filtering more detailed types in listings or search endpoints.
88
+
All names are english for comparing them inside applications.
89
+
Ordering is not guaranteed to persist with game updates.
0 commit comments