@@ -30,31 +30,27 @@ Field | Type | Optional | Description
30
30
------|------|----------|------------
31
31
featured | bool | yes | is the world featured
32
32
sort | ` SortOptions ` | yes | How to sort the worlds
33
- user | ` UserOptions ` | yes | who the creator may be
33
+ user | string | yes | Set to ` me ` for searching own worlds
34
34
userId | string | yes | Filter by creator id, use ` me ` for only worlds owned by current user
35
- n | int | yes | How many users to return
36
- offset | int | yes | How many users to skip
35
+ n | int | yes | How many worlds to return
36
+ order | ` OrderOptions ` | yes | Result ordering
37
+ offset | int | yes | How many worlds to skip
37
38
search | string | yes | Filter by name
38
39
tag | Comma seperated strings | yes | Filter by tag
39
40
notag | Comma seperated strings | Tags to exclude
40
41
releaseStatus | ` ReleaseStatus ` | yes | Filter by release status
41
- maxUnityVersion | string | yes | The max unity version the world support
42
+ maxUnityVersion | string | yes | Current unity version the game is using
42
43
minUnityVersion | string | yes | The min unity version the world support
43
- maxAssetVersion | string | yes | The max asset version the world support
44
+ maxAssetVersion | string | yes | Current asset version the game is using
44
45
minAssetVersion | string | yes | The min asset version the world support
45
- platform | string | yes | The platform the world support
46
+ platform | string | yes | The platform the world supports (usually standalonewindows)
46
47
47
48
Featured are set as:
48
49
- sort=order, featured=true
49
50
50
51
Trending is set as:
51
52
- sort=popularity, featured=false
52
53
53
- ### UserOptions
54
-
55
- - me
56
- - friends
57
-
58
54
### SortOptions
59
55
60
56
- popularity
@@ -63,6 +59,10 @@ Trending is set as:
63
59
- order
64
60
- _created_at
65
61
- _updated_at
62
+
63
+ ### OrderOptions
64
+ - ascending
65
+ - descending
66
66
67
67
## Returns
68
68
@@ -71,10 +71,11 @@ Array of:
71
71
Field | Type | Description
72
72
------|------|------------
73
73
id | string | World ID
74
- name | string | World Name
74
+ name | string | World name
75
75
authorName | string | The name of the creator
76
- totalLikes | int | How many likes this world has
77
- totalVisits | int | How many visits this world has
76
+ totalLikes | int | How many likes the world has
77
+ totalVisits | int | How many visits the world has
78
+ capacity | int | World player limit
78
79
imageUrl | string | URL to the image of the world
79
80
thumbnailImageURL | string | URL to the image of the world (small)
80
81
isSecure | boolean | unknown (probably password?)
0 commit comments