blessnet docs
  • Welcome to Blessnet
  • Getting Started
    • Quickstart
  • Reference
    • Blessnet Chain Details
    • Supported Chains
    • Contract Addresses
  • BLESS Token
    • BLESS
    • Get BLESS
    • BLESS Sepolia Faucet
    • BLESS Sprinkler
    • BLESS Dispenser
    • BLESS Bridge
  • Blessnet Apps
    • Attestations
    • Ethereals
    • Mirrors
    • Modular Permissions
    • Transaction Bridge
  • Papers and Articles
    • Whitepaper
  • Tech
    • Technical Reference
  • Blessnet API
    • Blessnet API URLs
    • /account-abstraction/operations
    • /account-abstraction/operations/accounts/:address
    • /account-abstraction/platforms/:platform/accounts/:id
    • /account-abstraction/platforms/:platform/accounts
    • /addresses/:address/delegates
    • /addresses/:address/permissions
    • /addresses/:address/vaults
    • /project
    • /bridge/transfers
    • /bridge/transfers/transactions/:hash
    • /deliveries/:id
    • /ethereals
    • /ethereals/:chainId/:address
    • /sprinkles
    • /tokens/:address/:id/uri
    • Block Scan API
  • Contract ABI
    • Attestions.sol
Powered by GitBook
On this page
  • Headers
  • Response Body
  • Example Request
  • Response
  1. Blessnet API

/project

You need an API key for this call. Please reach out to the Blessnet team to get setup.

GET/project

The /project endpoint retrieves authority information about the used API key.

Headers

Name
Value

x-api-key

Your API key

Response Body

Name
Type
Description

message

string

Response message

requestOwner

string

The recorded owner of the key.

auth

object

An object containing the various permissions given to this key

blessedAccount

string

Example Request

GET https://api.bless.net/project

Response

{
    "message": "Key details",
    "requestOwner": "omnus",
    "auth": {
      "aa": ["write", "create"],
      "deliveries": ["read"]
      "sprinkle": true,
    },
    "blessedAccount": "0xfoo",
    "balanceWei": "100000000000000000",
    "balance": "0.1"
}
{
  "message": "Invalid API key."
}
Previous/addresses/:address/vaultsNext/bridge/transfers

Last updated 1 month ago