OAuth2UserV2
Last updated
Last updated
GET /oauth2/v2/user/profile HTTP/1.1
Host:
Accept: */*
{
"profile": {
"name": "text",
"vanityURL": "text",
"pfp": "text",
"banner": "text",
"pfpNFT": {
"id": "text",
"collection": {
"id": "text",
"name": "text"
}
}
}
}GET /oauth2/v2/user/wallets HTTP/1.1
Host:
Accept: */*
{
"wallets": [
{
"id": "wallet_123",
"networkSymbol": "ETH",
"primaryWalletOn": [
"ETH"
],
"activeChains": [
"ETH"
]
}
]
}GET /oauth2/v2/user/email HTTP/1.1
Host:
Accept: */*
{
"email": "[email protected]"
}GET /oauth2/v2/user/twitter HTTP/1.1
Host:
Accept: */*
{
"twitter": {
"name": "twitter",
"externalId": "123456",
"externalName": "alice"
}
}GET /oauth2/v2/user/discord HTTP/1.1
Host:
Accept: */*
{
"discord": {
"name": "discord",
"externalId": "789012",
"externalName": "alice#1234"
}
}GET /oauth2/v2/user/telegram HTTP/1.1
Host:
Accept: */*
{
"telegram": {
"name": "telegram",
"externalId": "123123123123",
"externalName": "Alice TG"
}
}GET /oauth2/v2/user/roles HTTP/1.1
Host:
Accept: */*
{
"roles": [
{
"id": "role_1",
"name": "Member",
"guildId": "guild_123"
}
]
}GET /oauth2/v2/user/nfts HTTP/1.1
Host:
Accept: */*
[
{
"id": "nft_123",
"name": "Cool NFT #1",
"image": "https://example.com/nft1.png",
"status": "active",
"networkSymbol": "SOL",
"isCompressed": false,
"inscriptionNumber": null,
"ownerId": "wallet_123",
"collection": {
"id": "collection_1",
"name": "Cool Collection"
},
"community": {
"id": "community_1",
"name": "Cool Community"
}
}
]GET /oauth2/v2/user/tokens HTTP/1.1
Host:
Accept: */*
[
{
"id": "wallet_token_1",
"totalAmount": 1500.75,
"amount": 1200.5,
"stakedAmount": 300.25,
"walletId": "wallet_123",
"tokenId": "token_456",
"token": {
"id": "token_456",
"name": "Solana",
"symbol": "SOL",
"networkSymbol": "SOL"
}
}
]GET /oauth2/v2/user/domains HTTP/1.1
Host:
Accept: */*
[
{
"key": "paradigm.sol",
"name": "paradigm",
"extension": ".sol",
"owner": {
"id": "wallet_123",
"networkSymbol": "SOL"
}
},
{
"key": "alice.eth",
"name": "alice",
"extension": ".eth",
"owner": {
"id": "wallet_456",
"networkSymbol": "ETH"
}
}
]