Get sticker pack
GET
/api/stickers/packs/{packId}
const url = 'http://localhost:3001/api/stickers/packs/example';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3001/api/stickers/packs/example \ --header 'Authorization: <Authorization>'Retrieve a specific sticker pack by ID
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”packId
required
string
Sticker pack ID
Responses
Section titled “Responses”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}