-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1109 lines (1040 loc) · 30 KB
/
openapi.yaml
File metadata and controls
1109 lines (1040 loc) · 30 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Catalyst Lambdas v2 API
version: 2.0.0
description: |
## Overview
The Lambdas v2 service is a new implementation that replaces the previous lambdas service bundle associated with Catalyst nodes.
This service provides a comprehensive API for interacting with Catalyst Content Servers, assisting in the resolution of entities
and assets for any Decentraland client.
### About This Service
Lambdas v2 (lamb2) is part of the Catalyst bundle of services and is currently deployed as part of the Catalyst nodes that power
the Decentraland network. This modern implementation provides improved performance, maintainability, and scalability over the
original lambdas service.
### Key Features
- **User Assets**: Retrieve wearables, emotes, names, and lands owned by Ethereum addresses
- **Profiles**: Fetch and manage user profiles with versioning support
- **Third-Party Integrations**: Support for third-party wearables and collections
- **NFT Collections**: Query all available NFT collections across L1 and L2
- **Contracts**: Access catalyst servers, POIs, and name denylists
- **Outfits**: Retrieve outfit configurations and validate ownership
### Related Resources
- [GitHub Repository](https://github.com/decentraland/lamb2)
- [Catalyst Owner](https://github.com/decentraland/catalyst-owner)
- [Catalyst Content Server](https://github.com/decentraland/catalyst)
- [Full Catalyst API Documentation](https://decentraland.github.io/catalyst-api-specs)
contact:
name: Decentraland Foundation
url: https://decentraland.org
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://peer.decentraland.org/lambdas
description: Production - Main Decentraland network
- url: https://peer-testing.decentraland.org/lambdas
description: Staging - Testing environment
- url: https://peer.decentraland.zone/lambdas
description: Development - Development environment
security: [] # Public API - No authentication required
tags:
- name: Health
description: Service health and status endpoints
- name: Users
description: User-owned assets including wearables, emotes, names, and lands
- name: Profiles
description: User profile management and retrieval
- name: NFT Collections
description: Query available NFT collections
- name: Third-Party
description: Third-party wearables and integrations
- name: Outfits
description: Outfit configuration and validation
- name: Contracts
description: On-chain contract data including servers, POIs, and denylists
- name: Internal
description: Internal endpoints for explorer and other services
paths:
/status:
get:
tags:
- Health
summary: Get service status
description: Returns the current service status including version and commit hash
operationId: getStatus
responses:
"200":
description: Service status
content:
application/json:
schema:
$ref: "#/components/schemas/Status"
/about:
get:
tags:
- Health
summary: Get detailed service information
description: |
Returns comprehensive information about the Catalyst node including health status of all services
(content, lambdas, comms), network configuration, and whether the node is accepting users
operationId: getAbout
responses:
"200":
description: Service is healthy
content:
application/json:
schema:
$ref: "#/components/schemas/About"
"503":
description: Service is unhealthy
content:
application/json:
schema:
$ref: "#/components/schemas/About"
/users/{address}/wearables:
get:
tags:
- Users
summary: Get user's wearables
description: |
Retrieves all on-chain wearables owned by a specific Ethereum address. Supports pagination, filtering
by category/rarity/name, and sorting. Optionally includes definitions or entity metadata.
operationId: getUserWearables
parameters:
- $ref: "#/components/parameters/AddressParam"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
- $ref: "#/components/parameters/Category"
- $ref: "#/components/parameters/Rarity"
- $ref: "#/components/parameters/Name"
- $ref: "#/components/parameters/OrderBy"
- $ref: "#/components/parameters/Direction"
- $ref: "#/components/parameters/IncludeDefinitions"
- $ref: "#/components/parameters/IncludeEntities"
responses:
"200":
description: List of user's wearables
content:
application/json:
schema:
$ref: "#/components/schemas/WearablesPaginated"
"400":
$ref: "#/components/responses/BadRequest"
/users/{address}/emotes:
get:
tags:
- Users
summary: Get user's emotes
description: |
Retrieves all on-chain emotes owned by a specific Ethereum address. Supports pagination, filtering
by category/rarity/name, and sorting. Optionally includes definitions or entity metadata.
operationId: getUserEmotes
parameters:
- $ref: "#/components/parameters/AddressParam"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
- $ref: "#/components/parameters/Category"
- $ref: "#/components/parameters/Rarity"
- $ref: "#/components/parameters/Name"
- $ref: "#/components/parameters/OrderBy"
- $ref: "#/components/parameters/Direction"
- $ref: "#/components/parameters/IncludeDefinitions"
- $ref: "#/components/parameters/IncludeEntities"
responses:
"200":
description: List of user's emotes
content:
application/json:
schema:
$ref: "#/components/schemas/EmotesPaginated"
"400":
$ref: "#/components/responses/BadRequest"
/users/{address}/names:
get:
tags:
- Users
summary: Get user's names
description: Retrieves all Decentraland names (ENS-like) owned by a specific Ethereum address
operationId: getUserNames
parameters:
- $ref: "#/components/parameters/AddressParam"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
responses:
"200":
description: List of user's names
content:
application/json:
schema:
$ref: "#/components/schemas/NamesPaginated"
/users/{address}/lands:
get:
tags:
- Users
summary: Get user's lands
description: Retrieves all LAND and Estate NFTs owned by a specific Ethereum address
operationId: getUserLands
parameters:
- $ref: "#/components/parameters/AddressParam"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
responses:
"200":
description: List of user's lands
content:
application/json:
schema:
$ref: "#/components/schemas/LandsPaginated"
/users/{address}/third-party-wearables:
get:
tags:
- Third-Party
summary: Get user's third-party wearables
description: |
Retrieves all third-party wearables owned by a specific Ethereum address. Third-party wearables
are items from external collections integrated with Decentraland.
operationId: getUserThirdPartyWearables
parameters:
- $ref: "#/components/parameters/AddressParam"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
- $ref: "#/components/parameters/Category"
- $ref: "#/components/parameters/Name"
- $ref: "#/components/parameters/IncludeDefinitions"
responses:
"200":
description: List of user's third-party wearables
content:
application/json:
schema:
$ref: "#/components/schemas/ThirdPartyWearablesPaginated"
"400":
$ref: "#/components/responses/BadRequest"
/users/{address}/third-party-wearables/{collectionId}:
get:
tags:
- Third-Party
summary: Get user's third-party wearables from a specific collection
description: |
Retrieves third-party wearables owned by a user from a specific collection identified by URN
operationId: getUserThirdPartyCollectionWearables
parameters:
- $ref: "#/components/parameters/AddressParam"
- name: collectionId
in: path
required: true
description: The URN of the third-party collection
schema:
type: string
example: "urn:decentraland:matic:collections-thirdparty:third-party-name"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
- $ref: "#/components/parameters/IncludeDefinitions"
responses:
"200":
description: List of user's third-party wearables from collection
content:
application/json:
schema:
$ref: "#/components/schemas/ThirdPartyWearablesPaginated"
"400":
$ref: "#/components/responses/BadRequest"
/third-party-integrations:
get:
tags:
- Third-Party
summary: Get all third-party integrations
description: Returns a list of all available third-party integrations and their metadata
operationId: getThirdPartyIntegrations
responses:
"200":
description: List of third-party integrations
content:
application/json:
schema:
$ref: "#/components/schemas/ThirdPartyIntegrations"
/profiles:
post:
tags:
- Profiles
summary: Get multiple profiles
description: |
Retrieves multiple user profiles by their IDs (Ethereum addresses). Supports conditional requests
using If-Modified-Since header to avoid unnecessary data transfer.
operationId: getProfiles
parameters:
- name: If-Modified-Since
in: header
required: false
description: Only return profiles modified after this timestamp (HTTP date format)
schema:
type: string
example: "Wed, 21 Oct 2015 07:28:00 GMT"
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- ids
properties:
ids:
type: array
items:
type: string
description: Array of Ethereum addresses (profile IDs)
example: ["0x1234...", "0x5678..."]
responses:
"200":
description: List of profiles
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Profile"
"304":
description: Not modified - no profiles were updated since If-Modified-Since timestamp
"400":
$ref: "#/components/responses/BadRequest"
/profiles/{id}:
get:
tags:
- Profiles
summary: Get a single profile
description: Retrieves a user profile by their ID (Ethereum address)
operationId: getProfile
parameters:
- name: id
in: path
required: true
description: The Ethereum address of the profile
schema:
type: string
example: "0x1234567890abcdef1234567890abcdef12345678"
responses:
"200":
description: Profile found
content:
application/json:
schema:
$ref: "#/components/schemas/Profile"
"404":
$ref: "#/components/responses/NotFound"
/nfts/collections:
get:
tags:
- NFT Collections
summary: Get all NFT collections
description: |
Returns all available NFT collections from both L1 (Ethereum) and L2 (Polygon) networks,
including base wearables and emotes
operationId: getAllCollections
responses:
"200":
description: List of all collections
content:
application/json:
schema:
$ref: "#/components/schemas/Collections"
/outfits/{id}:
get:
tags:
- Outfits
summary: Get outfit by ID
description: |
Retrieves an outfit configuration and validates that the owner possesses all required items
operationId: getOutfit
parameters:
- name: id
in: path
required: true
description: The outfit ID (Ethereum address)
schema:
type: string
responses:
"200":
description: Outfit entity
content:
application/json:
schema:
$ref: "#/components/schemas/Entity"
"404":
$ref: "#/components/responses/NotFound"
/contracts/servers:
get:
tags:
- Contracts
summary: Get catalyst servers
description: Returns the list of catalyst servers from the DAO contract
operationId: getCatalystServers
responses:
"200":
description: List of catalyst servers
content:
application/json:
schema:
$ref: "#/components/schemas/Servers"
/contracts/pois:
get:
tags:
- Contracts
summary: Get Points of Interest
description: Returns the list of POIs (Points of Interest) from the DAO contract
operationId: getPOIs
responses:
"200":
description: List of POIs
content:
application/json:
schema:
$ref: "#/components/schemas/POIs"
/contracts/denylisted-names:
get:
tags:
- Contracts
summary: Get denylisted names
description: Returns the list of names that are not allowed in Decentraland
operationId: getDenylistedNames
responses:
"200":
description: List of denylisted names
content:
application/json:
schema:
$ref: "#/components/schemas/DenylistedNames"
/explorer/{address}/wearables:
get:
tags:
- Internal
summary: Get combined wearables for explorer
description: |
Internal endpoint that combines base wearables, on-chain wearables, and third-party wearables
in a single response. Used by the Decentraland Explorer.
operationId: getExplorerWearables
parameters:
- $ref: "#/components/parameters/AddressParam"
- $ref: "#/components/parameters/PageNum"
- $ref: "#/components/parameters/PageSize"
- $ref: "#/components/parameters/Category"
- $ref: "#/components/parameters/Rarity"
- $ref: "#/components/parameters/Name"
- $ref: "#/components/parameters/OrderBy"
- $ref: "#/components/parameters/Direction"
- name: collectionType
in: query
required: false
description: Filter by collection type (can be specified multiple times)
schema:
type: array
items:
type: string
enum: [base-wearable, on-chain, third-party]
style: form
explode: true
- name: thirdPartyCollectionId
in: query
required: false
description: Filter by third-party collection ID (can be specified multiple times)
schema:
type: array
items:
type: string
style: form
explode: true
responses:
"200":
description: Combined list of wearables
content:
application/json:
schema:
$ref: "#/components/schemas/MixedWearablesPaginated"
"400":
$ref: "#/components/responses/BadRequest"
components:
parameters:
AddressParam:
name: address
in: path
required: true
description: Ethereum address (0x-prefixed)
schema:
type: string
pattern: "^0x[a-fA-F0-9]{40}$"
example: "0x1234567890abcdef1234567890abcdef12345678"
PageNum:
name: pageNum
in: query
required: false
description: Page number (1-indexed)
schema:
type: integer
minimum: 1
default: 1
PageSize:
name: pageSize
in: query
required: false
description: Number of items per page (max 1000)
schema:
type: integer
minimum: 1
maximum: 1000
default: 100
Category:
name: category
in: query
required: false
description: Filter by category (can be specified multiple times)
schema:
type: array
items:
type: string
style: form
explode: true
Rarity:
name: rarity
in: query
required: false
description: Filter by rarity
schema:
type: string
enum: [common, uncommon, rare, epic, legendary, mythic, unique]
Name:
name: name
in: query
required: false
description: Filter by name (case-insensitive substring match)
schema:
type: string
OrderBy:
name: orderBy
in: query
required: false
description: Sort field
schema:
type: string
enum: [date, rarity, name]
default: rarity
Direction:
name: direction
in: query
required: false
description: Sort direction
schema:
type: string
enum: [ASC, DESC]
default: DESC
IncludeDefinitions:
name: includeDefinitions
in: query
required: false
description: Include item definitions in response
schema:
type: boolean
default: false
IncludeEntities:
name: includeEntities
in: query
required: false
description: Include entity metadata in response (cannot be used with includeDefinitions)
schema:
type: boolean
default: false
schemas:
Status:
type: object
properties:
version:
type: string
description: Service version
currentTime:
type: integer
description: Current timestamp in milliseconds
commitHash:
type: string
description: Git commit hash
About:
type: object
properties:
healthy:
type: boolean
description: Overall health status
acceptingUsers:
type: boolean
description: Whether the node is accepting new users
content:
type: object
properties:
healthy:
type: boolean
version:
type: string
commitHash:
type: string
publicUrl:
type: string
synchronizationStatus:
type: string
lambdas:
type: object
properties:
healthy:
type: boolean
version:
type: string
commitHash:
type: string
publicUrl:
type: string
comms:
type: object
nullable: true
properties:
healthy:
type: boolean
protocol:
type: string
version:
type: string
commitHash:
type: string
usersCount:
type: integer
adapter:
type: string
bff:
type: object
properties:
healthy:
type: boolean
protocolVersion:
type: string
userCount:
type: integer
publicUrl:
type: string
configurations:
type: object
properties:
networkId:
type: integer
globalScenesUrn:
type: array
items:
type: string
scenesUrn:
type: array
items:
type: string
realmName:
type: string
map:
type: object
Wearable:
type: object
properties:
urn:
type: string
description: Universal Resource Name for the wearable
amount:
type: integer
description: Total number of items owned
individualData:
type: array
items:
type: object
properties:
id:
type: string
tokenId:
type: string
transferredAt:
type: integer
price:
type: number
name:
type: string
category:
type: string
rarity:
type: string
enum: [common, uncommon, rare, epic, legendary, mythic, unique]
definition:
$ref: "#/components/schemas/WearableDefinition"
entity:
$ref: "#/components/schemas/Entity"
WearableDefinition:
type: object
description: Wearable metadata definition
properties:
id:
type: string
name:
type: string
description:
type: string
rarity:
type: string
category:
type: string
data:
type: object
Emote:
type: object
properties:
urn:
type: string
amount:
type: integer
individualData:
type: array
items:
type: object
properties:
id:
type: string
tokenId:
type: string
transferredAt:
type: integer
price:
type: number
name:
type: string
category:
type: string
rarity:
type: string
enum: [common, uncommon, rare, epic, legendary, mythic, unique]
definition:
$ref: "#/components/schemas/EmoteDefinition"
entity:
$ref: "#/components/schemas/Entity"
EmoteDefinition:
type: object
description: Emote metadata definition
properties:
id:
type: string
name:
type: string
description:
type: string
rarity:
type: string
category:
type: string
data:
type: object
Name:
type: object
properties:
name:
type: string
description: The Decentraland name
contractAddress:
type: string
tokenId:
type: string
price:
type: number
nullable: true
Land:
type: object
properties:
contractAddress:
type: string
tokenId:
type: string
category:
type: string
enum: [parcel, estate]
name:
type: string
nullable: true
x:
type: string
nullable: true
description: X coordinate for parcels
y:
type: string
nullable: true
description: Y coordinate for parcels
description:
type: string
nullable: true
price:
type: number
nullable: true
image:
type: string
nullable: true
ThirdPartyWearable:
type: object
properties:
urn:
type: string
amount:
type: integer
individualData:
type: array
items:
type: object
properties:
id:
type: string
name:
type: string
category:
type: string
entity:
$ref: "#/components/schemas/Entity"
definition:
$ref: "#/components/schemas/WearableDefinition"
Entity:
type: object
description: Content entity metadata
properties:
version:
type: string
id:
type: string
type:
type: string
pointers:
type: array
items:
type: string
timestamp:
type: integer
content:
type: array
items:
type: object
properties:
file:
type: string
hash:
type: string
metadata:
type: object
Profile:
type: object
properties:
avatars:
type: array
items:
type: object
properties:
userId:
type: string
email:
type: string
name:
type: string
hasClaimedName:
type: boolean
description:
type: string
ethAddress:
type: string
version:
type: integer
avatar:
type: object
tutorialStep:
type: integer
interests:
type: array
items:
type: string
ThirdPartyIntegration:
type: object
properties:
name:
type: string
description:
type: string
urn:
type: string
Collection:
type: object
properties:
id:
type: string
description: Collection URN
name:
type: string
description: Collection name
Server:
type: object
properties:
address:
type: string
owner:
type: string
id:
type: string
POI:
type: object
properties:
x:
type: integer
y:
type: integer
name:
type: string
description:
type: string
MixedWearable:
type: object
properties:
type:
type: string
enum: [base-wearable, on-chain, third-party]
urn:
type: string
amount:
type: integer
individualData:
type: array
items:
type: object
name:
type: string
category:
type: string
rarity:
type: string
nullable: true
entity:
$ref: "#/components/schemas/Entity"
PaginatedResponse:
type: object
properties:
elements:
type: array
items:
type: object
totalAmount:
type: integer
description: Total number of items across all pages
pageNum:
type: integer
description: Current page number
pageSize:
type: integer
description: Number of items per page
WearablesPaginated:
allOf:
- $ref: "#/components/schemas/PaginatedResponse"
- type: object
properties:
elements:
type: array
items:
$ref: "#/components/schemas/Wearable"
EmotesPaginated:
allOf:
- $ref: "#/components/schemas/PaginatedResponse"
- type: object
properties: