Coins
User Coins Stats
POST
https://api.munzee.com/user/stats/coins
Headers
Authorization
string
Munzee API Authorization token
Request Body
user_id
integer
User ID
{
"data": {
"discover_requests": 10,
"own_coins": 3
}
}
User Coins
POST
https://api.munzee.com/user/coins
Headers
Authorization
string
Munzee API Authorization token
Request Body
user_id
integer
User ID
{
"data": [
{
"coin_id": "10745",
"type_name": "Event Indicator",
"user_id": "4281",
"type": "28",
"name": "My event pin",
"notes": "",
"active": "1",
"link_created": "2017-06-01T18:20:20-05:00",
"only_physicals": "0",
"only_capture_types": "1",
"no_discover": "0",
"total_visits": 1858,
"total_players": 51,
"username": "coachV",
"logo": "https://munzee.global.ssl.fastly.net/images/coins/eventindicator.png",
"capture_types": [
"294"
]
}
]
}
Activate a Coin
POST
https://api.munzee.com/coin/activate
This endpoint requires the write scope
Headers
Authorization
string
Munzee API Authorization token
Request Body
coin_id
integer
Coin ID
{
"data": {
"updated": 1,
"message": "",
"error": ""
}
}
Deactivate a Coin
POST
https://api.munzee.com/coin/deactivate
This endpoint requires the write scope
Headers
Authorization
string
Munzee API Authorization token
Request Body
coin_id
integer
Coin ID
{
"data": {
"updated": 1,
"message": "",
"error": ""
}
}
Approve Discovery of a Coin
POST
https://api.munzee.com/coin/discover/approve
This endpoint requires the write scope
Headers
Authorization
string
Munzee API Authorization token
Request Body
request_id
integer
Coin Request ID
coin_id
integer
Coin ID
{
"data": {
"updated": 1,
"message": "",
"error": ""
}
}
Coin Discovery Requests
POST
https://api.munzee.com/coin/discover/requests
This endpoint requires the write scope
Headers
Authorization
string
Munzee API Authorization token
{
"data": [
{
"id": 123456,
"coin_id": 1234,
"user_id": 123456,
"username": "foobar",
"discovered_at": "2019-01-01T00:00:00-06:00",
"type_logo": "https://munzee.global.ssl.fastly.net/images/pins/munzee.png",
"name": "Coin Name"
}
]
}
Link a Coin
POST
https://api.munzee.com/user/coins/add
This endpoint requires the write scope
Headers
Authorization
string
Munzee API Authorization token
Request Body
code
string
Coin Code
{
"data": {
"linked": 1,
"message": "",
"error": ""
}
}
Last updated
Was this helpful?