App
Get App Authorized Realms
Accounts
Realm-Members
Realms
Currencies
Twitter-Data
Web3-Data-Collections
Web3-Data-Wallets
Web3-Data-Nfts
Web3-Data-Tokens
Web3-Activations
Web3-Activations-Configs
App
Get App Authorized Realms
GET
/
api
/
v1
/
apps
/
{appId}
/
authorized-realms
curl --request GET \
--url https://api.drip.re/api/v1/apps/{appId}/authorized-realms \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"realmId": "<string>",
"platformType": "<string>",
"platformId": "<string>",
"approvedScopes": [
"<string>"
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"totalCount": 123,
"hasNextPage": true,
"nextCursor": null
}
}
Authorizations
API Key
Path Parameters
Response
200 - application/json
Default Response
The response is of type object
.
curl --request GET \
--url https://api.drip.re/api/v1/apps/{appId}/authorized-realms \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"realmId": "<string>",
"platformType": "<string>",
"platformId": "<string>",
"approvedScopes": [
"<string>"
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"totalCount": 123,
"hasNextPage": true,
"nextCursor": null
}
}