Third Party
Third-party wearables and integrations
Retrieves all third-party wearables owned by a specific Ethereum address. Third-party wearables are items from external collections integrated with Decentraland.
Ethereum address (0x-prefixed)
0x1234567890abcdef1234567890abcdef12345678Pattern: ^0x[a-fA-F0-9]{40}$Page number (1-indexed)
1Number of items per page (max 1000)
100Filter by category (can be specified multiple times)
Filter by name (case-insensitive substring match)
Include item definitions in response
falseList of user's third-party wearables
Total number of items across all pages
Current page number
Number of items per page
Bad request - Invalid parameters
GET /lambdas/users/{address}/third-party-wearables HTTP/1.1
Host: peer.decentraland.org
Accept: */*
{
"elements": [
{
"urn": "text",
"amount": 1,
"individualData": [
{
"id": "text"
}
],
"name": "text",
"category": "text",
"entity": {
"version": "text",
"id": "text",
"type": "text",
"pointers": [
"text"
],
"timestamp": 1,
"content": [
{
"file": "text",
"hash": "text"
}
],
"metadata": {}
},
"definition": {
"id": "text",
"name": "text",
"description": "text",
"rarity": "text",
"category": "text",
"data": {}
}
}
],
"totalAmount": 1,
"pageNum": 1,
"pageSize": 1
}Get user's third-party wearables from a specific collection
Retrieves third-party wearables owned by a user from a specific collection identified by URN
Ethereum address (0x-prefixed)
0x1234567890abcdef1234567890abcdef12345678Pattern: ^0x[a-fA-F0-9]{40}$The URN of the third-party collection
urn:decentraland:matic:collections-thirdparty:third-party-namePage number (1-indexed)
1Number of items per page (max 1000)
100Include item definitions in response
falseList of user's third-party wearables from collection
Total number of items across all pages
Current page number
Number of items per page
Bad request - Invalid parameters
GET /lambdas/users/{address}/third-party-wearables/{collectionId} HTTP/1.1
Host: peer.decentraland.org
Accept: */*
{
"elements": [
{
"urn": "text",
"amount": 1,
"individualData": [
{
"id": "text"
}
],
"name": "text",
"category": "text",
"entity": {
"version": "text",
"id": "text",
"type": "text",
"pointers": [
"text"
],
"timestamp": 1,
"content": [
{
"file": "text",
"hash": "text"
}
],
"metadata": {}
},
"definition": {
"id": "text",
"name": "text",
"description": "text",
"rarity": "text",
"category": "text",
"data": {}
}
}
],
"totalAmount": 1,
"pageNum": 1,
"pageSize": 1
}Returns a list of all available third-party integrations and their metadata
List of third-party integrations
GET /lambdas/third-party-integrations HTTP/1.1
Host: peer.decentraland.org
Accept: */*
List of third-party integrations
{
"data": [
{
"name": "text",
"description": "text",
"urn": "text"
}
]
}Last updated