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: README.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
Gate API
4
4
5
-
- API version: v4.106.132
6
-
- SDK version: 7.2.132
5
+
- API version: v4.106.144
6
+
- SDK version: 7.2.144
7
7
8
8
Welcome to Gate API
9
9
APIv4 provides operations related to spot, margin, and contract trading, including public interfaces for querying market data and authenticated private interfaces for implementing API-based automated trading.
@@ -52,7 +52,7 @@ Add this dependency to your project's POM:
52
52
<dependency>
53
53
<groupId>io.gate</groupId>
54
54
<artifactId>gate-api</artifactId>
55
-
<version>7.2.132</version>
55
+
<version>7.2.144</version>
56
56
<scope>compile</scope>
57
57
</dependency>
58
58
```
@@ -62,7 +62,7 @@ Add this dependency to your project's POM:
62
62
Add this dependency to your project's build file:
63
63
64
64
```groovy
65
-
compile "io.gate:gate-api:7.2.132"
65
+
compile "io.gate:gate-api:7.2.144"
66
66
```
67
67
68
68
### Others
@@ -75,7 +75,7 @@ mvn clean package
75
75
76
76
Then manually install the following JARs:
77
77
78
-
*`target/gate-api-7.2.132.jar`
78
+
*`target/gate-api-7.2.144.jar`
79
79
*`target/lib/*.jar`
80
80
81
81
To install the API client library to your local Maven repository, simply execute:
Query announcement articles with pagination and filters for title, category, language, time, and other criteria. Send query parameters in the JSON request body. Both page and size are optional and must be strings when provided. No API key is required.
**created** | **String** | Article creation time, returned as a string. |
14
+
**updated** | **String** | Article update time, returned as a string. |
15
+
**releaseTime** | **String** | Article publication time, returned as a string. |
16
+
**views** | **Integer** | View count |
17
+
**author** | **String** | Author |
18
+
**authorId** | **Integer** | Article author ID. |
19
+
**tags** | **String** | Article tags |
20
+
**cate** | **String** | Category to which the article belongs. |
21
+
**isTop** | **Integer** | Pinned status indicator for the article. |
22
+
**cateId** | **Integer** | ID of the category to which the article belongs. |
23
+
**source** | **String** | Article source |
24
+
**contentLangList** | [**List<AnnouncementArticleLanguage>**](AnnouncementArticleLanguage.md) | Languages supported by the article, with the code and name of each language. |
**titleQuery** | **String** | Article title to use when querying announcements. | [optional]
11
+
**page** | **String** | Page number. Optional. Pass as a string, for example \"1\". | [optional]
12
+
**size** | **String** | Number of articles to return per page. Optional. Pass as a string, for example \"5\". | [optional]
13
+
**tags** | **String** | Article tags | [optional]
14
+
**timer** | **String** | Query announcements from the last N days, with N passed as a string. For example, on the 10th, pass \"10\" to query announcements from the 1st through the 10th. | [optional]
**cateLevel** | **String** | Category level, passed as a string: \"1\" or \"2\". | [optional]
17
+
**subWebsiteId** | **String** | Subsite ID, passed as a string: \"0\" for the main site or \"177\" for the Turkey site. Defaults to \"0\". | [optional]
18
+
**pinned** | **Integer** | Whether to include pinned articles: 1 to include them or 0 to exclude them. Defaults to 1. | [optional]
19
+
**updateAfter** | **Integer** | Query announcement articles updated after this timestamp. | [optional]
20
+
**lang** | **String** | Language code, for example \"cn\". | [optional]
21
+
**filterEmptyContent** | **Integer** | Whether to exclude articles with empty content in the current language: 0 to keep them or 1 to exclude them. Defaults to 1. | [optional]
0 commit comments