GET
/
2022-06-09
/
wallets
/
{walletLocator}
/
signatures
curl --request GET \
  --url https://staging.crossmint.com/api/2022-06-09/wallets/{walletLocator}/signatures \
  --header 'X-API-KEY: <x-api-key>'
{
  "signatures": [
    {
      "id": "tx-b984491a-5785-43c0-8811-45d46fe6e520",
      "walletType": "evm-smart-wallet",
      "type": "evm-message",
      "status": "awaiting-approval",
      "params": {
        "message": "Hello, world!",
        "signer": "evm-keypair:0xB17Ea8d34078424B9d7D126E444d5F2C3CC5c81E",
        "chain": "polygon"
      },
      "approvals": {
        "pending": [
          {
            "signer": "evm-keypair:0xB17Ea8d34078424B9d7D126E444d5F2C3CC5c81E",
            "message": "Hello world!"
          }
        ],
        "submitted": []
      },
      "createdAt": "2024-01-01T00:00:00Z"
    }
  ]
}

Headers

X-API-KEY
string
required

API key required for authentication

Path Parameters

walletLocator
string
required

A wallet locator can be of the format:

  • <walletAddress>
  • email:<email>:<walletType>
  • userId:<userId>:<walletType>
  • userId:<userId>:<walletType> (white label user example)
  • phoneNumber:<phoneNumber>:<walletType>
  • twitter:<handle>:<walletType>
  • x:<handle>:<walletType>

Query Parameters

page
string
default:
1
perPage
string
default:
10

Response

200
application/json
The signatures have been successfully retrieved.

List of signatures with their status, signing requirements, and wallet type specific data

signatures
object[]
required