Discover/Working Nomads API
live

Working Nomads APIworkingnomads.com

Search and filter remote job listings from Working Nomads. Access job titles, companies, categories, regions, and tags via a single paginated endpoint.

This API takes change requests — .
Endpoint health
verified 1h ago
search_jobs
1/1 passing latest checkself-healing
Endpoints
1
Updated
2h ago

What is the Working Nomads API?

The Working Nomads API exposes one endpoint — search_jobs — that returns up to 100 remote job listings per page from workingnomads.com, a curated board focused on location-independent roles. Each job object includes title, company, category, region, tags, description, and featured/premium status, giving developers structured access to a continuously updated feed of remote positions across disciplines and geographies.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-indexed).
Number of results per page. Must be between 1 and 100.
Free-text search query matched against job title, tags, company, and description (e.g. 'python', 'react developer').
Filter by geographic region. Matches jobs that list the specified region in their locations. Omitting returns all regions.
Filter by job category. Omitting returns all categories.
api.parse.bot/scraper/837c64f6-44c3-4462-8213-7d81ca05db78/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/837c64f6-44c3-4462-8213-7d81ca05db78/search_jobs?query=python&region=Europe&category=Development' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

Search remote job listings with optional filters for keyword, category, and region. Returns paginated results sorted by featured/premium status first, then by publication date descending. Each page returns up to 100 jobs.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-indexed).
limitintegerNumber of results per page. Must be between 1 and 100.
querystringFree-text search query matched against job title, tags, company, and description (e.g. 'python', 'react developer').
regionstringFilter by geographic region. Matches jobs that list the specified region in their locations. Omitting returns all regions.
categorystringFilter by job category. Omitting returns all categories.
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job listing objects",
    "page": "current page number",
    "limit": "results per page",
    "total": "total number of matching jobs",
    "has_more": "whether more pages are available"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "id": 1800514,
          "slug": "senior-react-native-developer-lemonio-1800514",
          "tags": [
            "react native",
            "react",
            "nodejs",
            "javascript",
            "english"
          ],
          "title": "Senior React Native Developer",
          "company": "Lemon.io",
          "premium": true,
          "category": "Development",
          "pub_date": "2026-08-18T14:55:22+00:00",
          "locations": [
            "Europe",
            "North America",
            "Latin America",
            "APAC"
          ],
          "company_slug": "lemonio",
          "salary_range": null,
          "location_base": "Europe, North America, Latin America, APAC",
          "position_type": "ft",
          "experience_level": "SENIOR_LEVEL"
        }
      ],
      "page": 1,
      "limit": 5,
      "total": 56,
      "has_more": true
    },
    "status": "success"
  }
}

About the Working Nomads API

What the API Returns

The search_jobs endpoint returns an array of remote job listing objects alongside pagination metadata: page, limit, total, and has_more. Each job in the jobs array carries fields such as job title, company name, category, region, tags, and description. Results are sorted by featured/premium status first, then by publication date descending, so the freshest promoted listings always appear at the top.

Filtering and Pagination

The endpoint accepts four optional filter parameters. query performs free-text matching against job title, tags, company, and description — useful for searching specific technologies like python or react. category narrows results to a single job category (for example, engineering or design), while region filters to jobs that list a specific geographic region in their locations. Combine all three to get highly targeted slices of the listing feed. Pagination is controlled via page (1-indexed) and limit (1–100), making it straightforward to walk through large result sets or retrieve a single page snapshot.

Coverage and Freshness

Working Nomads focuses on remote-first and digital-nomad-friendly roles. The total field in each response reflects the live count of matching listings at the time of the request. Because results are sorted by publication date after featured items, high-page responses contain older listings, and iterating through all pages captures the full historical depth of the board.

Reliability & maintenanceVerified

The Working Nomads API is a managed, monitored endpoint for workingnomads.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when workingnomads.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official workingnomads.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate remote job feeds filtered by programming language or framework using the query parameter
  • Build a region-specific remote job alert system using the region filter and has_more pagination flag
  • Track hiring velocity for specific companies by querying company name and monitoring the total count over time
  • Power a job board widget that surfaces only featured/premium listings from the first page of results
  • Classify remote job market trends by iterating over category-filtered responses and analyzing tag frequency
  • Sync a talent database with fresh remote listings by polling search_jobs sorted by publication date
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Working Nomads have an official developer API?+
Working Nomads does not publish a documented public developer API. This Parse API provides structured programmatic access to the listings data available on workingnomads.com.
What does each job object in the `jobs` array include?+
Each job object includes fields such as job title, company name, job category, geographic region, tags, description text, and a flag indicating featured or premium status. The endpoint does not expose direct application URLs or salary ranges as distinct structured fields.
How does the `region` filter behave — does it support multiple regions in one request?+
The region parameter matches jobs that list the specified region in their locations field and accepts a single value per request. It is not possible to pass multiple regions in one call. You can retrieve results for each region in separate requests and merge them client-side.
Does the API expose individual job detail pages or application links?+
Not currently. The search_jobs endpoint returns listing-level fields — title, company, category, region, tags, and description — but does not return a dedicated structured field for the external application URL or a full job detail view. You can fork this API on Parse and revise it to add an endpoint that retrieves the full detail for a specific job listing.
Can I filter jobs by salary or experience level?+
Not currently. The endpoint supports filtering by query, category, and region, but salary range and experience level are not available as filter parameters. You can fork this API on Parse and revise it to add salary or seniority filtering if the underlying data includes those fields.
Page content last updated . Spec covers 1 endpoint from workingnomads.com.
Related APIs in JobsSee all →
dailyremote.com API
Search and browse remote job listings from DailyRemote.com with complete job details including descriptions, salary ranges, company information, and hiring process steps. Access structured job data and company contact details to find and evaluate remote opportunities all in one place.
nofluffjobs.com API
Search and filter job openings from No Fluff Jobs by category, seniority level, location, and keywords to find IT, marketing, sales, and HR positions tailored to your needs. Retrieve detailed information about specific job postings including requirements, company details, and employment terms to help you make informed application decisions.
upwork.com API
Access comprehensive details about Upwork job postings, including descriptions, budgets, required skills, client information, and engagement metrics to help you find and evaluate opportunities. Monitor job activity and client profiles to make informed decisions about which projects to pursue.
Workday Jobs API
Search and retrieve job postings and detailed descriptions from any company's Workday career site. Find open positions across all organizations using Workday's hiring platform and access complete job details in one place.
hubmub.com API
Search and discover job opportunities on HubMub by filtering results based on your preferred search terms, job type, category, industry, and location. Retrieve detailed information about specific job listings to help you find the right position that matches your career goals.
hellowork.com API
Search and browse job listings and company profiles on HelloWork, France's leading job board. Filter by keyword, location, contract type, salary, and more.
nav.no API
Search and browse job listings from Norway's official job board with detailed filtering by location, sector, education level, and other criteria. Get comprehensive job details and explore available opportunities across the Norwegian labor market.
totaljobs.com API
Search and browse job listings from across the UK on TotalJobs, then access detailed information about specific positions including requirements, salary, and application details. Quickly compare opportunities and find roles that match your criteria.