Save player data and allow them to access it from anywhere on the internet.

WARNING: Save should be used as sparingly as possible. Try to reduce both size and frequency of user data submissions.

  • Limit data being saved. The maximum is 30KB.
  • Consider using some compression if you need more space.
  • Avoid auto-saving using a timer.
  • Use application/json or application/x-www-form-urlencoded mime types. The character encoding is UTF-8, use client side encoding/decoding if you have problems with special characters.

Save user data

required properties: key, value

POST: https://account.y8.com/api/v1/json/user_data/submit

Get user data

required properties: key

POST: https://account.y8.com/api/v1/json/user_data/retrieve

Remove user data

required properties: key

POST: https://account.y8.com/api/v1/json/user_data/remove