Wallet

This API suite covers wallet management (for cryptocurrency or blockchain applications) and a PRISM agent system that handles verification policies, schema registries, and event webhooks. The PRISM agent part relates to decentralized identity and credential management.

Generate a new wallet mnemonic

POST /api/v1/wallet/mnemonic

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

None

Body

Response

{
    "data": {
        "mnemonic": "present reward chair dad achieve title pair issue pink rubber bitter chef smoke mutual fringe",
        "seed": "b33264248e04f9c5c9847128b0f35e7b34e026b7dc94d20945d05d04042b44453b832b39e651ae660ae31703409acfeb4f32c29ab423230fd50831af3c35493e"
    }
}

Retrieves wallet information based on a provided mnemonic

GET /api/v1/wallet/{mnemonic}

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

None

Body

Name
Type
Description

mnemonic

string

The wallet's mnemonic phrase

Response

Last updated