Rise Wallet
  • 🙌Introduction
    • Self-Custody
    • Best Practices
    • Bigger Picture
  • Features
    • ✨Active on Devnet
  • Integrations
    • ⛓️Integrate Rise Wallet
      • With the Wallet Adapter
      • Without the Wallet Adapter
        • Detecting the Provider
        • Establishing Connection
        • Sending Transactions
        • Signing Transactions
        • Signing Messages
    • 🎭Profile Picture Protocol
      • Get a Wallet's Profile Picture
      • Set a NFT as a Profile Picture
      • Clear Profile Picture
    • ⚡Rise Notifications
      • Sending Notifications
      • User Perspective
        • Notification Center
        • Subscription Management
      • API Endpoints
        • Broadcast Endpoint
        • Unicast Endpoint
        • List Casts Endpoint
        • View Cast Endpoint
        • Check Key Subscription Status
Powered by GitBook
On this page
  1. Integrations
  2. Rise Notifications
  3. API Endpoints

Check Key Subscription Status

POST /v1/connector/key/check
{
  "domain": "localhost",
  "publicKey": "0xe195...7ce8",
}
Response
{
  "data": {
    "domain": "localhost",
    "providedKey": { //or null
      "key": "0xe195...7ce8",
      "account": "123...",
      "connected": true,
      "preferences": ["general", "security", "transactional"]
    },
    "account": {
      "_id": "123..",
      "name": "Localhost",
      "status": "active",
      "type": "provider",
      "logo": "https://localhost/logo.png",
      ...
    },
  }
}
PreviousView Cast Endpoint

Last updated 2 years ago

⚡