Pagination: Multi-source Jobs API
Last updated
Was this helpful?
Was this helpful?
[
1000,
1001,
3000,
4004
]curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/job_multi_source/search/es_dsl?after=541168785' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"must": [
{
"match": {
"title": "product manager"
}
},
{
"match": {
"location": "Los Angeles"
}
},
{
"term": {
"application_active": 1
}
}
]
}
},
"sort": [
"id"
]
}'curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/job_multi_source/search/es_dsl?after=11.881406,"2025-08-24 12:44:09",607' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"must": [
{
"match": {
"title": "product manager"
}
},
{
"match": {
"location": "Los Angeles"
}
},
{
"term": {
"application_active": 1
}
}
]
}
},
"sort": [
"_score"
]
}'curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/job_multi_source/search/es_dsl?items_per_page=20' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"must": [
{
"match": {
"title": "product manager"
}
},
{
"match": {
"location": "Los Angeles"
}
}
]
}
}
}'