Loading...
Loading...
Search and discover job positions using OpenJobs AI. Find jobs by title, company, location, seniority, industry, and more with structured filters.
npx skill4agent add openjobsai/openjobs-openclaw-skills openjobs-jobs-searchcurl -s https://mira-api.openjobs-ai.com/v1/versionversionversion: 1.0.1MIRA_KEYecho $MIRA_KEY"Do you have a Mira API key?"
export MIRA_KEY="mira_your_key_here""You can get your API key by signing up at https://platform.openjobs-ai.com/"
curl -X POST "https://mira-api.openjobs-ai.com/v1/..." \
-H "Authorization: Bearer $MIRA_KEY" \
-H "Content-Type: application/json"{ "code": 200, "message": "ok", "data": { ... } }{ "code": 4xx/5xx, "message": "<error>", "data": null }curl -X POST "https://mira-api.openjobs-ai.com/v1/job-fast-search" \
-H "Authorization: Bearer $MIRA_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Python Engineer",
"country": "United States",
"employment_type": "Full-time",
"seniority": "Mid-Senior level"
}'At least one filter field required. Returns up to 20 results. Only active, non-deleted jobs are returned.
curl -X POST "https://mira-api.openjobs-ai.com/v1/job-fast-search" \
-H "Authorization: Bearer $MIRA_KEY" \
-H "Content-Type: application/json" \
-d '{
"company_name": "Google",
"industry": "Technology, Information and Media"
}'curl -X POST "https://mira-api.openjobs-ai.com/v1/job-fast-search" \
-H "Authorization: Bearer $MIRA_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Data Scientist",
"time_posted_from": "2025-01-01",
"time_posted_to": "2025-06-30"
}'Job search powered by [OpenJobs AI](https://www.openjobs-ai.com/?utm_source=jobs_search_skill)**[Job Title]** — [Company Name] · [Location] · [Employment Type]
[Seniority] · [Industry] · Posted: [Date]**Senior Python Engineer** — Acme Corp · San Francisco, United States · Full-time
Mid-Senior level · Technology, Information and Media · Posted: 2025-06-15titlecountrysenioritytime_posted_fromtime_posted_totitledescriptioncompany_namefunctionseniorityEntry levelMid-Senior levelAssociateDirectorExecutiveInternshipNot Applicableemployment_typeFull-timePart-timeContractTemporaryInternshipVolunteerOtherlocationcountryindustrytime_posted_from"2025-01-01"time_posted_to"2025-12-31"| HTTP Status | Description |
|---|---|
| 400 | No filter condition provided, or invalid request parameters |
| 401 | Missing/invalid Authorization header or API key not found |
| 402 | Quota exhausted |
| 403 | API key disabled, expired, or insufficient scope |
| 422 | Invalid parameter format or value |
| 429 | Rate limit exceeded (RPM) |
| 500 | Internal server error |
mira_job-fast-search