Retry
POST /retry/:id
Retry a failed token launch.
Request
POST /retry/:idPath Parameters
id
string
Follower UUID
Response (Success)
{
"success": true,
"message": "Retry initiated",
"followerId": "abc-123-def"
}Response (Error)
{
"error": true,
"message": "Cannot retry: status is launched, not failed"
}Error Conditions
Not found
Follower not found
Not failed
Cannot retry: status is {status}, not failed
Max retries
Max retry attempts (3) exceeded
Example
Retry Workflow
Batch Retry
Using script
Options:
--dry-run- Preview without making changes--limit=N- Limit number of retries
Using API (custom script)
Retry Limits
MAX_RETRY_ATTEMPTS
3
Max retries per follower
RETRY_DELAY_MS
5000
Delay between retries
Exceeded max retries
If retryCount >= MAX_RETRY_ATTEMPTS, the API returns an error:
To retry anyway, manually reset the retry count:
What happens during retry
Common retry scenarios
Insufficient funds
Error: Insufficient funds for rent
Fix: Fund deployer wallet, then retry.
Network timeout
Error: Transaction was not confirmed in 30 seconds
Fix: Usually temporary. Just retry.
IPFS upload failed
Error: IPFS upload failed: 503
Fix: pump.fun API temporarily unavailable. Wait and retry.
Auth expired
Error: Failed to authenticate with X
Fix: Refresh X cookies, restart engine, then retry.
