curl --request GET \
--url https://api.soltop.sh/mev/job-status/{jobId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"id": "abc123def456",
"state": "active",
"progress": 45,
"createdAt": "2025-10-02T15:30:00Z"
}Poll for job status and retrieve results when complete. Used for both discovery and validation jobs. Job states: waiting (queued), active (processing), completed (results available), failed (error occurred). No subscription check - allows retrieving results even if subscription expires during processing.
curl --request GET \
--url https://api.soltop.sh/mev/job-status/{jobId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"id": "abc123def456",
"state": "active",
"progress": 45,
"createdAt": "2025-10-02T15:30:00Z"
}Supabase JWT authentication. Used for MEV Analysis and Write Locks endpoints. Requires an active subscription (trial, active, or grace_period status).
Job ID returned from discover-competitors or validate-competition endpoint
"abc123def456"