get
/v4/internal/payload/jobs/{jobId}
Get the status of an async Safe file analysis job. Poll this endpoint to check progress and retrieve results when completed.
Path parameters
jobIdstringrequired
Responses
200Response for status 200
Schema
object
jobIdstringrequired
Unique job identifierstatusenumrequired
pendingprocessingcompletedfailedprogressnumberProgress percentage of the job (0-100)resultanyrequired
Result of the job if completederrorstringError message if job failedcreatedAtnumberrequired
Timestamp when job was createdcompletedAtnumberTimestamp when job completeddurationSecondsnumberrequired
Duration of the job in seconds (elapsed time if still processing, final duration if completed)Example
{
"jobId": "string",
"status": "pending",
"progress": 0,
"result": null,
"error": "string",
"createdAt": 0,
"completedAt": 0,
"durationSeconds": 0
}get
https://api.merkl.xyz/v4/internal/payload/jobs/{jobId}curl -X GET "https://api.merkl.xyz/v4/internal/payload/jobs/{jobId}"Fill the required path parameter jobId to send.