Skip to content
The Yoto Developer Challenge is on, with $10,000 to win!

get public icons

This endpoint retrieves the list of public icons that are available to every user.

Response

The response is a JSON object with a displayIcons array which contains objects with the following properties:

  • mediaId (string): A unique identifier for the underlying icon file

  • userId (string): The ID of the user who uploaded this icon. The value will always be yoto

  • createdAt (string, ISO 8601) - UTC timestamp when this icon record was created

  • new (boolean): always true for public icons

  • publicTags (array of strings): Public tags associated with the display icon

  • title (string): The title of the display icon

  • url (string): The URL of the display icon

  • public (boolean): Indicates if the display icon is public. Always true for yoto icons

  • displayIconId (string): Unique identifier for the icon

Responses

200 OK application/json
displayIconsarray
[items]object
createdAtstring
displayIconIdstring
mediaIdstring
newboolean
publicboolean
publicTagsarray
[items]string
titlestring
urlstring
userIdstring
GET
/media/displayIcons/user/yoto
Server URL: https://api.yotoplay.com
Authorization (bearerAuth)
Terminal window
curl "https://api.yotoplay.com/media/displayIcons/user/yoto"
--header "Authorization: Bearer [YOUR_TOKEN]"