@getpara/rest-sdk when you want typed TypeScript methods and signer adapters; use the raw HTTP API when you want
language-native fetch or cURL.
One lifecycle route set supports EVM, COSMOS, SOLANA, STELLAR, and SUI. The wallet’s type determines its
address and chain-specific signing behavior; you do not switch to a different API namespace for each wallet type.
Download OpenAPI Spec
Prerequisites
To use Para, you need an API key. This key authenticates your requests to Para services and is essential for integration.Protect your API key. REST API wallets are permanently scoped to the project that created them. If you lose access
to your API key, you can rotate it safely. Deleting the project or creating a new one means losing wallet access.
See Setup → Authentication for details.
When to Use
- Programmatic (pregen) wallets: Create wallets for users before they sign up, build agent wallets, or run server-side signing.
- All five supported wallet types: Create and manage EVM, Cosmos, Solana, Stellar, and Sui wallets through the same routes.
- Other secp256k1 or Ed25519 chains: The
sign-rawendpoint is chain-agnostic. Use an EVM or Cosmos wallet for secp256k1 signing, or a Solana, Stellar, or Sui wallet for Ed25519 signing, then handle the chain-specific serialization and hashing on your side. - Your backend needs wallets and you prefer REST semantics over share-backed SDK ceremonies.
- You already rely on secret-key auth + IP allowlists.
- You prefer cURL or language-native HTTP clients over SDKs.