List jobs
curl --request POST \
--url https://api.mentionlab.io/api/jobs/list \
--header 'Content-Type: application/json' \
--header 'x-project-id: <x-project-id>' \
--data '
{
"status": "completed",
"createdBy": "550e8400-e29b-41d4-a716-446655440000",
"sort": [
{
"field": "createdAt",
"direction": "DESC"
}
]
}
'import requests
url = "https://api.mentionlab.io/api/jobs/list"
payload = {
"status": "completed",
"createdBy": "550e8400-e29b-41d4-a716-446655440000",
"sort": [
{
"field": "createdAt",
"direction": "DESC"
}
]
}
headers = {
"x-project-id": "<x-project-id>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-project-id': '<x-project-id>', 'Content-Type': 'application/json'},
body: JSON.stringify({
status: 'completed',
createdBy: '550e8400-e29b-41d4-a716-446655440000',
sort: [{field: 'createdAt', direction: 'DESC'}]
})
};
fetch('https://api.mentionlab.io/api/jobs/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mentionlab.io/api/jobs/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'status' => 'completed',
'createdBy' => '550e8400-e29b-41d4-a716-446655440000',
'sort' => [
[
'field' => 'createdAt',
'direction' => 'DESC'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-project-id: <x-project-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mentionlab.io/api/jobs/list"
payload := strings.NewReader("{\n \"status\": \"completed\",\n \"createdBy\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"sort\": [\n {\n \"field\": \"createdAt\",\n \"direction\": \"DESC\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-project-id", "<x-project-id>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mentionlab.io/api/jobs/list")
.header("x-project-id", "<x-project-id>")
.header("Content-Type", "application/json")
.body("{\n \"status\": \"completed\",\n \"createdBy\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"sort\": [\n {\n \"field\": \"createdAt\",\n \"direction\": \"DESC\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/jobs/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-project-id"] = '<x-project-id>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"status\": \"completed\",\n \"createdBy\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"sort\": [\n {\n \"field\": \"createdAt\",\n \"direction\": \"DESC\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"page": {
"totalRecords": 123,
"limit": 123,
"currentPage": 123,
"totalPages": 123,
"nextPage": 123,
"prevPage": 123
},
"results": [
{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"project": "01234567-89ab-cdef-0123-456789abcdef",
"totalExecutions": 100,
"pendingExecutions": 10,
"retryingExecutions": 2,
"successExecutions": 80,
"failedExecutions": 8,
"status": "processing",
"createdAt": "2026-06-08T12:00:00.000Z",
"updatedAt": "2026-06-08T12:30:00.000Z",
"createdBy": {
"firstName": "Jane",
"lastName": "Doe",
"email": "jane.doe@example.com",
"id": "01234567-89ab-cdef-0123-456789abcdef"
}
}
]
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Jobs
List jobs
Returns a paginated list of jobs for the project, applying the filtering and sorting from the request body and including each job creating user.
POST
/
api
/
jobs
/
list
List jobs
curl --request POST \
--url https://api.mentionlab.io/api/jobs/list \
--header 'Content-Type: application/json' \
--header 'x-project-id: <x-project-id>' \
--data '
{
"status": "completed",
"createdBy": "550e8400-e29b-41d4-a716-446655440000",
"sort": [
{
"field": "createdAt",
"direction": "DESC"
}
]
}
'import requests
url = "https://api.mentionlab.io/api/jobs/list"
payload = {
"status": "completed",
"createdBy": "550e8400-e29b-41d4-a716-446655440000",
"sort": [
{
"field": "createdAt",
"direction": "DESC"
}
]
}
headers = {
"x-project-id": "<x-project-id>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-project-id': '<x-project-id>', 'Content-Type': 'application/json'},
body: JSON.stringify({
status: 'completed',
createdBy: '550e8400-e29b-41d4-a716-446655440000',
sort: [{field: 'createdAt', direction: 'DESC'}]
})
};
fetch('https://api.mentionlab.io/api/jobs/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mentionlab.io/api/jobs/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'status' => 'completed',
'createdBy' => '550e8400-e29b-41d4-a716-446655440000',
'sort' => [
[
'field' => 'createdAt',
'direction' => 'DESC'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-project-id: <x-project-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mentionlab.io/api/jobs/list"
payload := strings.NewReader("{\n \"status\": \"completed\",\n \"createdBy\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"sort\": [\n {\n \"field\": \"createdAt\",\n \"direction\": \"DESC\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-project-id", "<x-project-id>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mentionlab.io/api/jobs/list")
.header("x-project-id", "<x-project-id>")
.header("Content-Type", "application/json")
.body("{\n \"status\": \"completed\",\n \"createdBy\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"sort\": [\n {\n \"field\": \"createdAt\",\n \"direction\": \"DESC\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/jobs/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-project-id"] = '<x-project-id>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"status\": \"completed\",\n \"createdBy\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"sort\": [\n {\n \"field\": \"createdAt\",\n \"direction\": \"DESC\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"page": {
"totalRecords": 123,
"limit": 123,
"currentPage": 123,
"totalPages": 123,
"nextPage": 123,
"prevPage": 123
},
"results": [
{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"project": "01234567-89ab-cdef-0123-456789abcdef",
"totalExecutions": 100,
"pendingExecutions": 10,
"retryingExecutions": 2,
"successExecutions": 80,
"failedExecutions": 8,
"status": "processing",
"createdAt": "2026-06-08T12:00:00.000Z",
"updatedAt": "2026-06-08T12:30:00.000Z",
"createdBy": {
"firstName": "Jane",
"lastName": "Doe",
"email": "jane.doe@example.com",
"id": "01234567-89ab-cdef-0123-456789abcdef"
}
}
]
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Headers
Project ID to specify the project context
Query Parameters
Required range:
1 <= x <= 100Required range:
x >= 1Body
application/json
Filter the jobs by their processing status.
Available options:
pending, processing, completed, failed, partial_failed Example:
"completed"
Filter the jobs by the identifier of the user who created them.
Example:
"550e8400-e29b-41d4-a716-446655440000"
Sorting criteria for the returned jobs. Each entry pairs a sortable field (createdAt, updatedAt or status) with a direction (ASC or DESC). Defaults to sorting by creation date descending.
Show child attributes
Show child attributes
Example:
[
{ "field": "createdAt", "direction": "DESC" }
]