/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"
}

Last updated