Skip to main content

Get Mixin UUID

MixPay API for translating a Mixin ID into UUID for format.

GET /user/mixin_uuid/{mixin_id}

Providing a Mixin ID, like 40053095, will get back to your a0d7791408776b47eb1dd3f94ed15d6a.

info

This API only searches the MixPay users, and will not search Mixin Network. That means you have to use our MixPay App first. How to use MixPay? Please reference Getting Started. You can use this API to get payeeID.

How to get Mixin ID?

Endpoint URL

https://api.mixpay.me/v1/user/mixin_uuid/{mixin_id}

Authentication and options

AuthorizationPublic Access
LimitationNo limitation

Example request - Get Mixin UUID.

curl -i -X GET https://api.mixpay.me/v1/user/mixin_uuid/40053095
// title: Response
{
"code":0,
"success":true,
"message":"",
"data":{
"payeeId":"72562124-2db9-4210-aaa6-69983610d0b7"
},
"timestampMs":1654769200076
}