Munzee API
  • What is this?
  • User
    • Profile
    • Captures
    • Deploys
    • ZeeOps
    • Rovers
    • Coins
    • Notifications
  • Clans
    • Clan V2
  • Specials
  • Maps
    • Maps V4
  • Events
  • Assets
Powered by GitBook
On this page
  • User Coins Stats
  • User Coins
  • Activate a Coin
  • Deactivate a Coin
  • Approve Discovery of a Coin
  • Coin Discovery Requests
  • Link a Coin

Was this helpful?

  1. User

Coins

User Coins Stats

POST https://api.munzee.com/user/stats/coins

Headers

Name
Type
Description

Authorization

string

Munzee API Authorization token

Request Body

Name
Type
Description

user_id

integer

User ID

{
  "data": {
    "discover_requests": 10,
    "own_coins": 3
  }
}

User Coins

POST https://api.munzee.com/user/coins

Headers

Name
Type
Description

Authorization

string

Munzee API Authorization token

Request Body

Name
Type
Description

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

Name
Type
Description

Authorization

string

Munzee API Authorization token

Request Body

Name
Type
Description

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

Name
Type
Description

Authorization

string

Munzee API Authorization token

Request Body

Name
Type
Description

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

Name
Type
Description

Authorization

string

Munzee API Authorization token

Request Body

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

Authorization

string

Munzee API Authorization token

Request Body

Name
Type
Description

code

string

Coin Code

{
  "data": {
    "linked": 1,
    "message": "",
    "error": ""
  }
}

PreviousRoversNextNotifications

Last updated 5 years ago

Was this helpful?