List parse requests
GET
/api/v1/parse/requests
const url = 'http://localhost:8080/api/v1/parse/requests?status=PENDING&limit=50&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:8080/api/v1/parse/requests?status=PENDING&limit=50&offset=0'X-Total-Count header reports the total matching rows for the supplied status filter. Use limit=0 to obtain only the count without rows.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” status
string
Filter by status
limit
integer format: int32
offset
integer format: int32
Responses
Section titled “ Responses ”OK
Media type */*
Array<object>
object
id
integer format: int64
requestHash
string
status
string
phase
string
progressDecoded
integer format: int32
progressTotal
integer format: int32
resultContentIds
Array<integer>
errorMessage
string
retryCount
integer format: int32
createdAt
string format: date-time
startedAt
string format: date-time
finishedAt
string format: date-time
lastHeartbeatAt
string format: date-time