Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Request bind between profile of two addresses

POSThttps://authapi.moralis.io/bind/request

Request for message to bind profile that is belong to the two addresses<br> All profiles under the addresses will be bound and new profile will be generated.

BODY PARAM
Request Bodyobjectrequired
The two addresses that are required to be bind.
Responses
201The messages that is required to be signed by each of the address
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request POST \
--url 'https://authapi.moralis.io/bind/request' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '
{
"addresses": {
"blockchainType": "evm",
"address": "0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531",
"publicKey": "0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d"
}
}
'
Response Example
{
"messages": [
""
]
}