Skip to main content
POST
/
v1
/
wallets
/
{walletId}
/
sign-raw
Sign Raw
curl --request POST \
  --url https://api.beta.getpara.com/v1/wallets/{walletId}/sign-raw \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "data": "0x48656c6c6f20576f726c64"
}
'
{
  "signature": "a1b2c3d4e5f6..."
}

Authorizations

X-API-Key
string
header
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
data
string
required

Data to sign (0x-prefixed hex)

Example:

"0x48656c6c6f20576f726c64"

Response

Signature

signature
string

Signature (hex without 0x prefix)

Example:

"a1b2c3d4e5f6..."