Get account info

API base url: https://funplace.fun/api/v1/user/get/

Get User Base Info

GET me

scopes: Funplace::view or Funplace::view::me

Get user information.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <access_token>

FUNPLACE-PROFILE-ID

Response

{
  "success": "ok",
  "data": {
    "link_base": "https://funplace.fun/d/",
    "link": "Funplace",
    "page_color": "#1da1f2",
    "page_background": {"type":"Color","Color":"#9f4973"},
    "basecur": "RUB",
    "minprice": 10,
    "description_on": "true",
    "description": "A?",
    "links_on": "true",
    "links": {
      "Twitter":"https://twitter.com/TvVorg",
      "Telegram":"https://t.me/vvvorg_vorgTv",
      "Author's Site":"https://vvvorg.com",
      "Vimeo":"https://vimeo.com/vorgtv",
      "Reddit":"https://www.reddit.com/user/Wrong-Glove-3727/",
      "Linkedin":"https://ru.linkedin.com/in/\u044f\u0440\u043e\u0441\u043b\u0430\u0432-\u0441\u043d\u0438\u043c\u0449\u0438\u043a\u043e\u0432-6ba118186",
      "Twitch":"https://twitch.tv/vorgtvstreams",
      "YouTube":"https://youtube.com/@vvvorg",
      "GitHub":"https://github.com/Vorg111"
    },
    "default_price": {"amount":"50.00","curr":"RUB"},
    "button_text": "donate",
    "nickname": "Snimshchikov Yaroslav",
    "avatar": "https://storage.googleapis.com/cdn.vvvorg.com/images/profile-67fc112df3dca-1744572717-1.png?GoogleAccessId=cdnacc%40vvvorg.iam.gserviceaccount.com&Expires=97666572719&Signature=jjtTO72mDVTJDAsm8tRAzv5Cxgs7olKdH8iEBUjNRhMxdpwtEZgduuvCJvIzgXy57Qum5P%2FfkF5vsAegfnvcN3ltQvurH54gbui8Y3%2FKT4Wi%2FK7LSn0XOaHxG6u0Fo72GH9nOB%2F9S5BKKtWrpnkNbgvtRmwFwMRTHaqc%2BTo%2Fu6pZf5%2BjIgzixoIdrzm1TDaOxzbKLCB1En%2Bku7KhhNDd6djnmdni4v4kOTanbqMIG%2Fk8y05BpWGeNSiFbW7YamcnN%2BrjXMYuy7Ku67GeIraTEYHNnxkBSvPaxNh%2FXysBJTwLuDl6npUazbpj8Ku1u5JpC6fPV6HhVYzKDykNYgjJ4w%3D%3D&generation=1744572719390907",
    "verification_level": 3,
    "blocked": false
  },
}

Response body (If successful)

Parameter
Required?
Type
Description

success

yes

string

Always have the value ok.

data

yes

array

An array with information about the change.

data[link_base]

yes

URI

The base donate page link usually takes the value https://funplace.fun/d/.

data[link]

yes

string

Donate page link suffix value.

data[page_color]

yes

String

Color of the donation page.

data[page_background]

yes

Background of the donation page.

data[basecur]

yes

String (ISO 4217)

Account currency. One of the available currencies in ISO 4217 format: RUB,USD,EUR,UAH,BRL,TRY,KZT,INR,PLN,GEL,CNY,BTC,ETH,SOL,TON.

data[minprice]

yes

int

Minimum donation amount in basecur.

data[description_on]

yes

String

Enable or disable the description on the donation page.

data[description]

yes

String

Description on the donation page value.

data[links_on]

yes

String

Enable or disable the description on the donation page.

data[links]

yes

array of Social links

Links on the donation page value.

data[default_price]

yes

Array

Default donation amount.

data[button_text]

yes

String

Text written on the donate button on the donate page.

data[nickname]

yes

String

Name displayed inside Funplace.

data[avatar]

yes

URI

Link to the user's avatar in Funplace.

data[verification_level]

yes

int

User verification level. More details in the terms of use.

data[blocked]

yes

bool

Is the user blocked.

Last updated

Was this helpful?