1
Get the API Key
Visit https://dashboard.biconomy.io and get your API Key by creating an MEE stack project!
Make sure your API key has sponsorship enabled if you want to use gasless transactions.
2
Compose and Quote
Call 
/v1/quote with the provided composeFlows - a set of instructions that define your desired operations using the four instruction types (build, build-raw, intent, or intent-simple).3
Sign Payload
Based on the returned 
quoteType, sign the payload:- permit: Sign EIP-2612 typed data (gasless)
- onchain: Send approval transaction on-chain
- simple: Sign a simple message
4
Execute
Call 
/v1/execute with the signed payload to execute your supertransaction across multiple chains.API Workflow
The Supertransaction API follows a simple 4-step pattern:1. Quote
Call 
/v1/quote to build the flow2. Sign Payload
Sign the returned payload based on the quote type
3. Execute
Call 
/v1/execute to run your supertransaction across chains4. Monitor
Track execution status and get transaction hashes for each chain
Quick Example
Here’s a minimal example of a cross-chain swap:For detailed signing instructions, see Executing Workflows.