The dataset viewer is taking too long to fetch the data. Try to refresh this page.
Error code: ClientConnectionError
Jobicy Remote Jobs
An automatically updated dataset of remote job opportunities published by Jobicy.
The dataset is designed for developers, researchers, analysts, search systems, AI agents, RAG applications, labor-market research, career tools, and other applications that need structured remote-job data.
Data source
The source data comes from the public Jobicy Remote Jobs API:
https://jobicy.com/api/v2/remote-jobs
Each record includes a canonical Jobicy job URL so applications using this dataset can refer users back to the original job posting.
Update schedule
The dataset is updated automatically several times per day.
New and recently updated jobs are retrieved from the Jobicy API and merged into daily JSONL files. Duplicate records within the same daily file are removed using the Jobicy job ID.
Files are stored by publication date:
data/
βββ daily/
βββ 2026-08-24.jsonl
βββ 2026-08-25.jsonl
βββ 2026-08-26.jsonl
βββ ...
Each daily file contains jobs whose pubDate belongs to that calendar date.
This structure preserves historical job data over time rather than exposing only a current snapshot.
Format
Files use JSON Lines (.jsonl).
Each line represents one job:
{
"id": 123456,
"url": "https://jobicy.com/jobs/example-role",
"jobTitle": "Senior Backend Engineer",
"companyName": "Example Company",
"companyLogo": "https://example.com/logo.png",
"jobIndustry": ["Engineering"],
"jobType": ["full-time"],
"jobGeo": "Anywhere",
"jobLevel": "Senior",
"jobExcerpt": "Short job summary",
"jobDescription": "Plain-text job description",
"pubDate": "2026-08-25T12:00:00.000Z",
"salaryMin": 120000,
"salaryMax": 160000,
"salaryCurrency": "USD",
"salaryPeriod": "yearly",
"source": "Jobicy"
}
Fields
| Field | Description |
|---|---|
id |
Unique Jobicy job ID |
url |
Canonical URL of the job on Jobicy |
jobTitle |
Job title |
companyName |
Employer or company name |
companyLogo |
Company logo URL when available |
jobIndustry |
Job category or categories |
jobType |
Employment type |
jobGeo |
Job location or remote geography |
jobLevel |
Seniority or experience level |
jobExcerpt |
Short job summary |
jobDescription |
Job description converted to plain text |
pubDate |
Original publication date |
salaryMin |
Minimum salary when available |
salaryMax |
Maximum salary when available |
salaryCurrency |
Salary currency |
salaryPeriod |
Salary period |
source |
Data source, Jobicy |
Fields may be null or empty when the original job posting does not provide that information.
Loading the dataset
Individual JSONL files can be loaded directly with Python:
import pandas as pd
df = pd.read_json(
"https://huggingface.co/datasets/jobicy/remote-jobs/resolve/main/data/daily/2026-08-25.jsonl",
lines=True
)
The repository can also be accessed with the Hugging Face ecosystem and standard HTTP tooling.
Intended uses
Example uses include:
- remote-job search and discovery
- AI agents and assistants
- RAG and retrieval systems
- labor-market analysis
- remote-work trend research
- salary analysis
- recruiting and career applications
- job taxonomy and classification research
- natural-language processing
- developer integrations and prototypes
Data freshness
Jobicy continuously publishes and updates remote job opportunities.
This Hugging Face dataset is a historical distribution channel and should not be treated as the authoritative source for whether a job is still open.
For the latest job availability, use the canonical Jobicy job URL or the live Jobicy API.
Related Jobicy resources
- Website: https://jobicy.com
- Remote Jobs API: https://jobicy.com/api/v2/remote-jobs
- API documentation and integrations: https://jobicy.com/jobs-rss-feed
- GitHub: https://github.com/Jobicy
Attribution
When practical, applications and research using this dataset should identify Jobicy as the data source and preserve the canonical Jobicy job URL.
Example attribution:
Remote job data provided by Jobicy β https://jobicy.com
License and third-party content
The dataset repository uses custom terms described in the included LICENSE file.
Job descriptions, company names, company logos, trademarks, and other employer-provided material may originate from third parties and may remain subject to the rights of their respective owners.
The presence of third-party content in this dataset does not grant additional rights to that content.
Users of the dataset are responsible for ensuring that their use complies with applicable rights, laws, and platform terms.
About Jobicy
Jobicy is a remote-work and career platform providing remote job listings, job-search tools, career resources, salary information, APIs, RSS feeds, and developer integrations.
- Downloads last month
- 969