Skip to main content
POST
/
v1
/
wallets
Create Wallet
curl --request POST \
  --url https://api.beta.getpara.com/v1/wallets \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "type": "EVM",
  "userIdentifier": "alice@example.com",
  "userIdentifierType": "EMAIL",
  "scheme": "DKLS",
  "cosmosPrefix": "cosmos"
}
'
{ "id": "0a1b2c3d-4e5f-6789-abcd-ef0123456789", "type": "EVM", "scheme": "DKLS", "status": "creating", "createdAt": "2024-01-15T09:30:00Z", "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f...", "publicKey": "<string>", "userIdentifier": "alice@example.com", "userIdentifierType": "EMAIL" }

Authorizations

X-API-Key
string
header
default:sk_your_secret_key_here
required

Your partner secret key (server-side only)

Headers

X-Request-Id
string<uuid>

UUID for request tracing. Para returns one if omitted.

Idempotency-Key
string

Unique key for safe retries on POST endpoints. If a request with the same key is received within 24 hours, the original response is returned without re-executing. Recommended format: UUID v4. Max length 256 characters. Returns 422 if the same key is reused with a different request body. Returns 409 if a request with the same key is still being processed.

Maximum string length: 256

Body

application/json
type
enum<string>
required

Blockchain network type

Available options:
EVM,
SOLANA,
COSMOS,
STELLAR
userIdentifier
string
required

User identifier (email, phone, or custom ID)

Example:

"alice@example.com"

userIdentifierType
enum<string>
required

Type of user identifier

Available options:
EMAIL,
PHONE,
CUSTOM_ID,
GUEST_ID,
DISCORD,
TWITTER,
TELEGRAM,
FARCASTER
scheme
enum<string>

Signature scheme (defaults based on wallet type)

Available options:
DKLS,
CGGMP,
ED25519
cosmosPrefix
string

Bech32 prefix for Cosmos wallets

Example:

"cosmos"

Response

Wallet created

id
string<uuid>
required

Unique wallet identifier

Example:

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

type
enum<string>
required

Blockchain network type

Available options:
EVM,
SOLANA,
COSMOS,
STELLAR
Example:

"EVM"

scheme
enum<string>
required

Signature scheme

Available options:
DKLS,
CGGMP,
ED25519
Example:

"DKLS"

status
enum<string>
required

Wallet creation status

Available options:
creating,
ready
createdAt
string<date-time>
required

ISO 8601 timestamp

Example:

"2024-01-15T09:30:00Z"

address
string

Wallet address. Present when status is ready, omitted otherwise.

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f..."

publicKey
string

Public key. Present when status is ready, omitted otherwise.

userIdentifier
string

The user identifier associated with this wallet

Example:

"alice@example.com"

userIdentifierType
enum<string>

Type of user identifier

Available options:
EMAIL,
PHONE,
CUSTOM_ID,
GUEST_ID,
DISCORD,
TWITTER,
TELEGRAM,
FARCASTER