Skip to main content
GET
/
keys
/
{keyId}
Get Key
curl --request GET \
  --url https://api.dfns.io/keys/{keyId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "scheme": "DH",
  "curve": "ed25519",
  "publicKey": "<string>",
  "name": "<string>",
  "status": "Active",
  "custodial": true,
  "dateCreated": "<string>",
  "imported": true,
  "exported": true,
  "dateExported": "<string>",
  "dateDeleted": "<string>",
  "wallets": [
    {
      "id": "<string>",
      "network": "Algorand"
    }
  ],
  "store": {
    "id": "<string>",
    "kind": "Hsm",
    "keyId": "<string>"
  }
}

Authentication

✅ Organization User (CustomerEmployee)
✅ Delegated User (EndUser)
✅ Service Account

Required Permissions

Keys:Read: Always required.

Authorizations

Authorization
string
header
required

Bearer Token: Used to authenticate API requests. More details how to generate the token: Authentication flows

Path Parameters

keyId
string
required
Minimum length: 1

Response

200 - application/json

Success

id
string
required
scheme
enum<string>
required
Available options:
DH,
ECDSA,
EdDSA,
Schnorr
curve
enum<string>
required
Available options:
ed25519,
secp256k1,
stark
publicKey
string
required
status
enum<string>
required
Available options:
Active,
Archived
custodial
boolean
required
dateCreated
string
required
wallets
object[]
required
store
object
required
name
string
imported
boolean
exported
boolean
dateExported
string
dateDeleted
string
I