List favorites (wallet only)
GET
/v1/transfer/favorites
const url = 'https://api.parasta.io/v1/transfer/favorites';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.parasta.io/v1/transfer/favorites \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
object
favorites
Array<object>
object
id
string
type
string
label
string
address
string
networkId
string
tokenId
string
createdAt
string format: date-time
Example
{ "favorites": [ { "type": "wallet" } ]}