search_jobs
Search active Remoote remote jobs. Returns capped public results with canonical Remoote URLs and no raw employer apply URLs.
Parameters10
| query | any | optional | |
| skills | any | optional | |
| exclude_skills | any | optional | |
| country | any | optional | |
| region | any | optional | |
| location_tag | any | optional | |
| seniority | any | optional | |
| employment_type | any | optional | |
| salary_required | boolean | optional | |
| limit | integer | optional |
Raw schema
{
"type": "object",
"properties": {
"query": {
"anyOf": [
{
"maxLength": 200,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Query"
},
"skills": {
"anyOf": [
{
"items": {
"type": "string"
},
"maxItems": 20,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Skills"
},
"exclude_skills": {
"anyOf": [
{
"items": {
"type": "string"
},
"maxItems": 20,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Exclude Skills"
},
"country": {
"anyOf": [
{
"maxLength": 100,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Country"
},
"region": {
"anyOf": [
{
"maxLength": 80,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Region"
},
"location_tag": {
"anyOf": [
{
"maxLength": 80,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Location Tag"
},
"seniority": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/SeniorityLevel"
},
"maxItems": 10,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Seniority"
},
"employment_type": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/EmploymentType"
},
"maxItems": 10,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Employment Type"
},
"salary_required": {
"default": true,
"title": "Salary Required",
"type": "boolean"
},
"limit": {
"default": 10,
"maximum": 25,
"minimum": 1,
"title": "Limit",
"type": "integer"
}
},
"$defs": {
"EmploymentType": {
"enum": [
"full-time",
"part-time",
"contract",
"temporary",
"internship"
],
"title": "EmploymentType",
"type": "string"
},
"SeniorityLevel": {
"enum": [
"entry",
"junior",
"middle",
"senior",
"staff",
"principal",
"lead",
"vp",
"director",
"executive",
"manager"
],
"title": "SeniorityLevel",
"type": "string"
}
},
"title": "AgentSearchJobsRequest"
}