Skip to content

Get sticker pack

GET
/api/stickers/packs/{packId}
curl --request GET \
--url http://localhost:3001/api/stickers/packs/example \
--header 'Authorization: <Authorization>'

Retrieve a specific sticker pack by ID

packId
required
string

Sticker pack ID

OK

Media typeapplication/json
object
message
string
sticker_pack
object
created_at
string
creator_address
string
id
string
name
string
sticker_count
integer
stickers
Array<object>
object
chunk_id

MeshStorage chunk ID

integer
created_at
string
id
string
mime_type
string
pack_id
string
success
boolean
Examplegenerated
{
"message": "example",
"sticker_pack": {
"created_at": "example",
"creator_address": "example",
"id": "example",
"name": "example",
"sticker_count": 1,
"stickers": [
{
"chunk_id": 1,
"created_at": "example",
"id": "example",
"mime_type": "example",
"pack_id": "example"
}
]
},
"success": true
}

Bad Request

Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{
"error": "example",
"success": true
}

Not Found

Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{
"error": "example",
"success": true
}