Request bind between profile of two addresses
curl --request POST \
--url https://authapi.moralis.io/bind/request \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"addresses": [
{
"blockchainType": "evm",
"address": "0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531",
"publicKey": "0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d"
}
]
}
'import requests
url = "https://authapi.moralis.io/bind/request"
payload = { "addresses": [
{
"blockchainType": "evm",
"address": "0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531",
"publicKey": "0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d"
}
] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
addresses: [
{
blockchainType: 'evm',
address: '0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531',
publicKey: '0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d'
}
]
})
};
fetch('https://authapi.moralis.io/bind/request', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://authapi.moralis.io/bind/request",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'addresses' => [
[
'blockchainType' => 'evm',
'address' => '0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531',
'publicKey' => '0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://authapi.moralis.io/bind/request"
payload := strings.NewReader("{\n \"addresses\": [\n {\n \"blockchainType\": \"evm\",\n \"address\": \"0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531\",\n \"publicKey\": \"0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://authapi.moralis.io/bind/request")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"addresses\": [\n {\n \"blockchainType\": \"evm\",\n \"address\": \"0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531\",\n \"publicKey\": \"0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://authapi.moralis.io/bind/request")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"addresses\": [\n {\n \"blockchainType\": \"evm\",\n \"address\": \"0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531\",\n \"publicKey\": \"0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"messages": [
"Please sign this message to bind:\nProfile Ids:\n- 0x0b2bbac1251651c0cbbdbbb29fed5a03adc8b05a2a9eb10a02aaa489b9c1f8ff\n\nwith\n\nAddress: 0x6ed338bcB610640e81465FCfb9894DDfA354Cc91\nNonce: 5pXWu7aGkY2J7II0X",
"Please sign this message to bind:\nProfile Ids:\n- 0x0b2bbac1251651c0cbbdbbb29fed5a03adc8b05a2a9eb10a02aaa489b9c1f8ff\n\nwith\n\nAddress: 0x6ed338bcB610640e81465FCfb9894DDfA354Cc91\nNonce: 5pXWu7aGkY2J7II0X"
]
}Bind
Request bind between profile of two addresses
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.
POST
/
bind
/
request
Request bind between profile of two addresses
curl --request POST \
--url https://authapi.moralis.io/bind/request \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"addresses": [
{
"blockchainType": "evm",
"address": "0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531",
"publicKey": "0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d"
}
]
}
'import requests
url = "https://authapi.moralis.io/bind/request"
payload = { "addresses": [
{
"blockchainType": "evm",
"address": "0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531",
"publicKey": "0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d"
}
] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
addresses: [
{
blockchainType: 'evm',
address: '0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531',
publicKey: '0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d'
}
]
})
};
fetch('https://authapi.moralis.io/bind/request', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://authapi.moralis.io/bind/request",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'addresses' => [
[
'blockchainType' => 'evm',
'address' => '0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531',
'publicKey' => '0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://authapi.moralis.io/bind/request"
payload := strings.NewReader("{\n \"addresses\": [\n {\n \"blockchainType\": \"evm\",\n \"address\": \"0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531\",\n \"publicKey\": \"0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://authapi.moralis.io/bind/request")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"addresses\": [\n {\n \"blockchainType\": \"evm\",\n \"address\": \"0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531\",\n \"publicKey\": \"0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://authapi.moralis.io/bind/request")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"addresses\": [\n {\n \"blockchainType\": \"evm\",\n \"address\": \"0x57af6B90c2237d2F888bf4CAe56f25FE1b14e531\",\n \"publicKey\": \"0xfb2853744bb8afd58d9386d1856afd8e08de135019961dfa3a10d8c9bf83b99d\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"messages": [
"Please sign this message to bind:\nProfile Ids:\n- 0x0b2bbac1251651c0cbbdbbb29fed5a03adc8b05a2a9eb10a02aaa489b9c1f8ff\n\nwith\n\nAddress: 0x6ed338bcB610640e81465FCfb9894DDfA354Cc91\nNonce: 5pXWu7aGkY2J7II0X",
"Please sign this message to bind:\nProfile Ids:\n- 0x0b2bbac1251651c0cbbdbbb29fed5a03adc8b05a2a9eb10a02aaa489b9c1f8ff\n\nwith\n\nAddress: 0x6ed338bcB610640e81465FCfb9894DDfA354Cc91\nNonce: 5pXWu7aGkY2J7II0X"
]
}Authorizations
Body
application/json
The two addresses that are required to be bind.
An array of addresses that needs to be bind
Required array length:
2 elementsShow child attributes
Show child attributes
Response
201 - application/json
The messages that is required to be signed by each of the address
Message that needs to be signed by the end user
Example:
[ "Please sign this message to bind:\nProfile Ids:\n- 0x0b2bbac1251651c0cbbdbbb29fed5a03adc8b05a2a9eb10a02aaa489b9c1f8ff\n\nwith\n\nAddress: 0x6ed338bcB610640e81465FCfb9894DDfA354Cc91\nNonce: 5pXWu7aGkY2J7II0X", "Please sign this message to bind:\nProfile Ids:\n- 0x0b2bbac1251651c0cbbdbbb29fed5a03adc8b05a2a9eb10a02aaa489b9c1f8ff\n\nwith\n\nAddress: 0x6ed338bcB610640e81465FCfb9894DDfA354Cc91\nNonce: 5pXWu7aGkY2J7II0X" ]
⌘I

