Generate API Key
Generate new API Key & create a wallet
POST
/createWallet
Method is used to generate new API Key & create a new wallet. It returns the private key, public key, and API key of the newly created wallet.
Headers
Name
Value
Content-Type
application/json
Response
{
"privateKey": "your_private_key_here",
"publicKey": "your_public_key_here",
"apiKey": "your_api_key_here"
}
Examples
curl --location --request POST 'https://rpc.api-pump.fun/createWallet' \
--header 'Content-Type: application/json'
Last updated