curl --request POST \
--url https://api.gospott.com/vacancies/_search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"filters": [
{
"type": "text",
"operator": "contains",
"path": "vacancy.name",
"value": "<string>"
}
],
"page": 4503599627370495,
"pageSize": 50
}
'{
"items": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"stage": {
"id": "<string>",
"order": 123,
"name": "<string>",
"colorHex": "<string>",
"isOpen": true
},
"client": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"industry": "Accessible Architecture and Design",
"size": "1 employee",
"domain": "<string>",
"logoUrl": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"startAt": "2023-11-07T05:31:56Z",
"endAt": "2023-11-07T05:31:56Z",
"salaryRange": {
"min": 123,
"max": 123,
"currency": "AED"
},
"location": {
"street1": "<string>",
"street2": "<string>",
"postalCode": "<string>",
"city": "<string>",
"region": "<string>",
"state": "<string>",
"country": "<string>",
"rawCityCountry": "<string>",
"latitude": 123,
"longitude": 123,
"formattedAddress": "<string>",
"type": "primary_home"
},
"team": [
{
"userId": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"avatarUrl": "<string>",
"deactivatedAt": "2023-11-07T05:31:56Z"
}
],
"employmentType": "fullTime",
"locationType": "remote",
"clientTeam": [
{
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"middleName": "<string>",
"secondLastName": "<string>",
"avatarUrl": "<string>",
"candidateId": "<string>",
"companyId": "<string>",
"companyName": "<string>",
"companyLogoUrl": "<string>",
"jobTitle": "<string>",
"department": "<string>",
"emails": [
{
"email": "jsmith@example.com",
"purpose": "personal",
"isPrimary": true
}
],
"phoneNumbers": [
{
"phoneNumber": "<string>",
"purpose": "personal",
"isPrimary": true
}
]
}
],
"scorecard": [
{
"groupName": "<string>",
"attributes": [
{
"attribute": "<string>"
}
]
}
],
"nextTaskDue": {
"id": "<string>",
"content": "<string>",
"dueDate": "2023-11-07T05:31:56Z"
},
"customAttributes": [
{
"attributeDefinitionId": "<string>",
"label": "<string>",
"aiFillOngoing": true,
"aiOverridden": true,
"isFilledByAI": true,
"value": {
"viewType": "customText",
"text": "<string>"
}
}
]
}
],
"pagination": {
"hasNextPage": true
}
}Returns a list of jobs that match the provided filters. Supports a flexible filter set and returns paginated results with full job details.
curl --request POST \
--url https://api.gospott.com/vacancies/_search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"filters": [
{
"type": "text",
"operator": "contains",
"path": "vacancy.name",
"value": "<string>"
}
],
"page": 4503599627370495,
"pageSize": 50
}
'{
"items": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"stage": {
"id": "<string>",
"order": 123,
"name": "<string>",
"colorHex": "<string>",
"isOpen": true
},
"client": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"industry": "Accessible Architecture and Design",
"size": "1 employee",
"domain": "<string>",
"logoUrl": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"startAt": "2023-11-07T05:31:56Z",
"endAt": "2023-11-07T05:31:56Z",
"salaryRange": {
"min": 123,
"max": 123,
"currency": "AED"
},
"location": {
"street1": "<string>",
"street2": "<string>",
"postalCode": "<string>",
"city": "<string>",
"region": "<string>",
"state": "<string>",
"country": "<string>",
"rawCityCountry": "<string>",
"latitude": 123,
"longitude": 123,
"formattedAddress": "<string>",
"type": "primary_home"
},
"team": [
{
"userId": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"avatarUrl": "<string>",
"deactivatedAt": "2023-11-07T05:31:56Z"
}
],
"employmentType": "fullTime",
"locationType": "remote",
"clientTeam": [
{
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"middleName": "<string>",
"secondLastName": "<string>",
"avatarUrl": "<string>",
"candidateId": "<string>",
"companyId": "<string>",
"companyName": "<string>",
"companyLogoUrl": "<string>",
"jobTitle": "<string>",
"department": "<string>",
"emails": [
{
"email": "jsmith@example.com",
"purpose": "personal",
"isPrimary": true
}
],
"phoneNumbers": [
{
"phoneNumber": "<string>",
"purpose": "personal",
"isPrimary": true
}
]
}
],
"scorecard": [
{
"groupName": "<string>",
"attributes": [
{
"attribute": "<string>"
}
]
}
],
"nextTaskDue": {
"id": "<string>",
"content": "<string>",
"dueDate": "2023-11-07T05:31:56Z"
},
"customAttributes": [
{
"attributeDefinitionId": "<string>",
"label": "<string>",
"aiFillOngoing": true,
"aiOverridden": true,
"isFilledByAI": true,
"value": {
"viewType": "customText",
"text": "<string>"
}
}
]
}
],
"pagination": {
"hasNextPage": true
}
}Documentation Index
Fetch the complete documentation index at: https://api-docs.spott.io/llms.txt
Use this file to discover all available pages before exploring further.
API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.