Skip to main content
GET
/
mev
/
job-status
/
{jobId}
Get MEV Job Status
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"
}

Authorizations

Authorization
string
header
required

Supabase JWT authentication. Used for MEV Analysis and Write Locks endpoints. Requires an active subscription (trial, active, or grace_period status).

Path Parameters

jobId
string
required

Job ID returned from discover-competitors or validate-competition endpoint

Example:

"abc123def456"

Response

Job status and results (if completed)

Job in progress

success
boolean
Example:

true

id
string
Example:

"abc123def456"

state
enum<string>
Available options:
waiting,
active
Example:

"active"

progress
number

0-100

Example:

45

createdAt
string<date-time>
Example:

"2025-10-02T15:30:00Z"