Accounts
Realm-Members
Realms
Currencies
Shared Currency
- GETGet all the pending requests for a realm (not by currency)
- POSTShare a currency with another realm
- POSTAccept a pending shared currency
- POSTReject a pending shared currency
- GETList all child realms that use a parent's currency
- DELUn-share a currency from a child realm
- DELRemove a shared currency from a child realm
Twitter-Data
Web3-Data-Collections
Web3-Data-Wallets
Web3-Data-Nfts
Web3-Data-Tokens
Web3-Activations
Web3-Activations-Configs
Shared Currency
Get all the pending requests for a realm (not by currency)
GET
/
api
/
v1
/
realms
/
{realmId}
/
shares
/
pending
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/shares/pending \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"parentRealmId": "<string>",
"childRealmId": "<string>",
"realmPointId": "<string>",
"permissions": [
"<string>"
],
"status": "<string>",
"parentRealm": {
"id": "<string>",
"name": "<string>"
},
"realmPoint": {
"id": "<string>",
"name": "<string>",
"emoji": "<string>",
"customEmojiUrl": "<string>"
}
}
]
}
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/realms/{realmId}/shares/pending \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"parentRealmId": "<string>",
"childRealmId": "<string>",
"realmPointId": "<string>",
"permissions": [
"<string>"
],
"status": "<string>",
"parentRealm": {
"id": "<string>",
"name": "<string>"
},
"realmPoint": {
"id": "<string>",
"name": "<string>",
"emoji": "<string>",
"customEmojiUrl": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.