# Dailyremote — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Jobs | **Website:** [dailyremote.com/?search=web%20developer&page=1&location_country=Canada#main](https://dailyremote.com/?search=web%20developer&page=1&location_country=Canada#main) | **Docs:** [parse.bot/marketplace/731f42c7-1e52-4371-aa96-d707d1ebb221/dailyremote-com-api](https://parse.bot/marketplace/731f42c7-1e52-4371-aa96-d707d1ebb221/dailyremote-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-dailyremote-com-api-731f42c7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_detail

Get full details for a specific job listing by its URL slug. Returns complete job description, company info, salary structure, location requirements, and application URLs extracted from embedded JSON-LD structured data. The slug is obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Job URL slug obtained from search_jobs results[*].slug (e.g. 'web-developer-4942532'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dailyremote-com-api-731f42c7/get_job_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_jobs

Search for remote job listings on DailyRemote with optional keyword and country filters. Returns job cards with basic metadata including title, company, salary, location, and experience level. Optionally fetches full JSON-LD details for each listing (slower). Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country filter for job location (e.g. 'Canada', 'United States'). Empty string returns all countries. |
| `fetch_details` | string | No | Whether to fetch full job details for each listing. Accepted values: 'true', 'false'. Set to 'false' for faster results with basic metadata only. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword (e.g. 'web developer', 'data analyst'). Empty string returns all listings. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dailyremote-com-api-731f42c7/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","fetch_details":"<string>","page":"<integer>","query":"<string>"}'
```
