Request Status
Many of our long-running endpoints immediately return a requestId instead of making you wait. You can use the requestId to query the status of the request.
POST /api/v1/request/status
Content Type: application/json
Required Parameters
ids (array) - An array of request ids.
Example Request
curl -X POST "https://api.coinchomp.com/api/v1/request/status" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"ids": ["epxq3IVI8FUq7WhBQ5qM"]}'
Example Response
{
"success": true,
"requests": [
{
"id": "epxq3IVI8FUq7WhBQ5qM",
"status": "succeeded",
"updates": [
"01/24/2025, 05:33:27: Starting new request...",
"01/24/2025, 05:34:06: Token Address: EFgSB6Jejc6gNonfn6btARLQPBR9pEbCK5aHVHsteuyy",
"01/24/2025, 05:34:22: Adding CoinChomp fee of 0.00222 SOL",
"01/24/2025, 05:35:14: Launched the token contract on pump.fun"
],
"data": {
"success": true,
"pumpUrl": "https://pump.fun/coin/EFgSB6Jejc6gNonfn6btARLQPBR9pEbCK5aHVHsteuyy"
}
}
]
}
Last updated