Skip to main content
POST
/
v1
/
wallets
/
{walletId}
/
sign-typed-data
Sign Typed Data
curl --request POST \
  --url https://api.beta.getpara.com/v1/wallets/{walletId}/sign-typed-data \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "typedData": {
    "domain": {},
    "types": {},
    "primaryType": "<string>",
    "message": {}
  }
}
'
{
  "signature": "a1b2c3d4e5f6..."
}

Authorizations

X-API-Key
string
header
default:beta_239a31fee5298dc110ee6a78e274b809
required

Your partner secret key (server-side only)

Headers

X-Request-Id
string<uuid>

UUID for request tracing. Para returns one if omitted.

Path Parameters

walletId
string
required

Wallet ID

Example:

"0a1b2c3d-4e5f-6789-abcd-ef0123456789"

Body

application/json
typedData
object
required

Response

Signature

signature
string
required

Hex-encoded signature without 0x prefix.

Example:

"a1b2c3d4e5f6..."