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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.blockline.sh/llms.txt

Use this file to discover all available pages before exploring further.

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 check-wallet, check-attacker, or check-sandwich 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"