Skip to content

Commit 7232ab2

Browse files
authored
Merge branch 'main' into ulids-docs
2 parents d9fff9b + 10b9921 commit 7232ab2

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

docs/v1/get-achievement-of-the-week.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ if (response is NetworkResponse.Success) {
8080
"Type": null,
8181
"Author": "StingX2",
8282
"AuthorULID": "00003EMFWR7XB8SDPEHB3K56ZQ",
83-
"DateCreated": "2021-10-16 23:53:32",
84-
"DateModified": "2021-10-17 19:26:09"
83+
"DateCreated": "2021-10-16",
84+
"DateModified": "2021-10-17"
8585
},
8686
"Console": {
8787
"ID": 3,

docs/v1/get-game-extended.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Most of this data can be found on the game page, for example, [Sonic the Hedgeho
2222

2323
| Name | Required? | Description |
2424
| :--- | :-------- | :---------------------------------------------------------------- |
25-
| `z` | Yes | Your username. |
2625
| `y` | Yes | Your web API key. |
2726
| `i` | Yes | The target game ID. |
2827
| `f` | | Defaults to 3. Set to 5 to see Unofficial / demoted achievements. |
@@ -87,9 +86,9 @@ if (response is NetworkResponse.Success) {
8786
"Publisher": "",
8887
"Developer": "",
8988
"Genre": "",
90-
"Released": "1992-06-02 00:00:00",
89+
"Released": "1992-06-02",
9190
"ReleasedAtGranularity": "day",
92-
"IsFinal": 0,
91+
"IsFinal": false, // this field is deprecated, and will always return false
9392
"RichPresencePatch": "cce60593880d25c97797446ed33eaffb",
9493
"GuideURL": null,
9594
"Updated": "2023-12-27T13:51:14.000000Z",

docs/v1/get-game-info-and-user-progress.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ You must query the user by either their username or their ULID. Please note the
1818

1919
| Name | Required? | Description |
2020
| :--- | :-------- | :----------------------------------------------------------------- |
21-
| `z` | Yes | Your username. |
2221
| `y` | Yes | Your web API key. |
2322
| `u` | | The target username or ULID. |
2423
| `g` | Yes | The target game ID. |
@@ -94,7 +93,7 @@ if (response is NetworkResponse.Success) {
9493
"Genre": "",
9594
"Released": "1992-06-02 00:00:00",
9695
"ReleasedAtGranularity": "day",
97-
"IsFinal": 0,
96+
"IsFinal": false, // this field is deprecated, and will always return false
9897
"RichPresencePatch": "cce60593880d25c97797446ed33eaffb",
9998
"GuideURL": null,
10099
"ConsoleName": "Mega Drive",

docs/v1/get-user-profile.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ This information can be found near the top of [any user page](https://retroachie
2020

2121
### Query Parameters
2222

23-
| Name | Required? | Description |
24-
| :--- | :-------- | :------------------- |
25-
| `y` | Yes | Your web API key. |
26-
| `u` | Yes | The target username. |
23+
You must query the user by either their username or their ULID. Please note the username is not considered a stable value. As of 2025, users can change their usernames. Initially querying by username is a good way to fetch a ULID.
24+
25+
| Name | Required? | Description |
26+
| :--- | :-------- | :---------------------- |
27+
| `y` | Yes | Your web API key. |
28+
| `u` | | The target username. |
29+
| `i` | | The target user's ULID. |
2730

2831
## Client Library
2932

@@ -74,6 +77,7 @@ if (response is NetworkResponse.Success) {
7477
```json [HTTP Response]
7578
{
7679
"User": "MaxMilyin",
80+
"ULID": "00003EMFWR7XB8SDPEHB3K56ZQ",
7781
"UserPic": "/UserPic/MaxMilyin.png",
7882
"MemberSince": "2016-01-02 00:43:04",
7983
"RichPresenceMsg": "Playing ~Hack~ 11th Annual Vanilla Level Design Contest, The",
@@ -94,6 +98,7 @@ if (response is NetworkResponse.Success) {
9498
```json [NodeJS]
9599
{
96100
"user": "MaxMilyin",
101+
"ulid": "00003EMFWR7XB8SDPEHB3K56ZQ",
97102
"userPic": "/UserPic/MaxMilyin.png",
98103
"memberSince": "2016-01-02 00:43:04",
99104
"richPresenceMsg": "Playing ~Hack~ 11th Annual Vanilla Level Design Contest, The",

docs/v1/get-user-summary.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ if (response is NetworkResponse.Success) {
179179
"Publisher": "Falcon",
180180
"Developer": "Falcon",
181181
"Genre": "2D Platforming, Arcade",
182-
"Released": "1981",
182+
"Released": "1981-01-01",
183+
"ReleasedAtGranularity": "year",
183184
"IsFinal": 0
184185
},
185186
"UserPic": "/UserPic/xelnia.png",

0 commit comments

Comments
 (0)