Skip to main content
Version: 2.2

Get addresses that are bound to the specific profileId

GEThttps://authapi.moralis.io/profile/:profileId/addresses
PATH PARAMS
profileIdstringrequired
Unique identifier with a length of 66 characters
Responses
API KEY
// Dependencies to install:
// $ npm install node-fetch --save
// add "type": "module" to package.json

import fetch from 'node-fetch';

const options = {
method: 'GET',
headers: {
accept: 'application/json',
'X-API-Key': 'YOUR_API_KEY'
},
};

fetch('https://authapi.moralis.io/profile/%3AprofileId/addresses', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
Empty