API

The HiveBuzz API allows developers to easily get information about users' badges and integrate them into their websites or applications.

The API is free to use. However, be aware that the call rate is throttled to avoid exhausting the server resources.

Endpoint

https://hivebuzz.me/api

Retrieve a user's level image

GET https://hivebuzz.me/api/level/{username}

HiveBuzz will update the image automatically whenever the user's level changes (up or down).

If you want the API to return the "Dead Fish" image whenever a user has been inactive and hasn't performed any transaction on the blockchain for more than 30 days, you can add the parameter ?dead to your call.

Path Parameters

Query Parameters

Examples: https://hivebuzz.me/api/level/arcange https://hivebuzz.me/api/level/ned https://hivebuzz.me/api/level/ned?dead

Retrieve all badges for a user

GET https://hivebuzz.me/api/badges/{username}

Retrieve the list of all badges for a user, including those that were not collected by the user

Returns an array of objects with the following properties

Sample Response:

[
 ...,
 {
  "type": "perso",
  "ID": 38,
  "name": "birthday-3",
  "title": "3 years on the Hive blockchain",
  "description": "Congratulations! You joined Hive blockchain three years ago!",
  "description_title": "3 years on the Hive blockchain",
  "group": "P01",
  "url": "https://hivebuzz.me/badges/birthday-3.png"
 },
 {
  "type": "meetup",
  "ID": 43,
  "name": "steemfest-4",
  "title": "SteemFest 4 Attendee",
  "description": "You went to Bangkok to attend SteemFest⁴",
  "description_title": "SteemFest 4 Attendee",
  "group": "M01",
  "url": "https://hivebuzz.me/badges/steemfest-4.s4.png"
 },
 ...
]

Examples: https://hivebuzz.me/api/badges/arcange

Retrieve the list of a badge owners

GET https://hivebuzz.me/api/owners/{id}

Path Parameters

Returns an array of strings (usernames)

Sample Response:

["achimmertens","arcange","brittandjosie","charly.travels","coolsurfer","detlev","fynemiene","louis88","martibis","pundito","rollie1212","sunsea"]

Example: https://hivebuzz.me/api/owners/43

Last updated