# Unsplash — 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 Unsplash photos by keyword and retrieve image URLs, photographer info, and detailed photo metadata such as tags, EXIF, location, and related collections.

**Category:** Other | **Website:** [unsplash.com/](https://unsplash.com/) | **Docs:** [parse.bot/marketplace/c5fdf147-a0ca-432f-a922-2ce4540c6663/unsplash-com-api](https://parse.bot/marketplace/c5fdf147-a0ca-432f-a922-2ce4540c6663/unsplash-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-unsplash-com-api-c5fdf147/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_photo_details

Get full details for a specific Unsplash photo including tags, EXIF camera data, location, view/download counts, and related collections. Use the photo ID or slug from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `photo_id` | string | Yes | Photo ID or full slug from search results (e.g., 'foggy-mountain-summit-1Z2niiBPg5A' or '1Z2niiBPg5A') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unsplash-com-api-c5fdf147/get_photo_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"photo_id":"<string>"}'
```

### search_photos

Search Unsplash photos by keyword or theme. Returns paginated results with image URLs, dimensions, descriptions, and photographer details. Server-side filtering limited to query, orientation, and sort order. Paginates via page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `order_by` | string | No | Sort order for results |
| `orientation` | string | No | Filter by photo orientation |
| `page` | integer | No | Page number for pagination (1-based) |
| `per_page` | integer | No | Number of results per page (max 30) |
| `query` | string | Yes | Search keyword or theme (e.g., 'nature', 'architecture', 'ocean') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unsplash-com-api-c5fdf147/search_photos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"order_by":"<string>","orientation":"<string>","page":"<integer>","per_page":"<integer>","query":"<string>"}'
```

### search_photos_with_tags

Search photos by keyword and return results enriched with tags. Fetches individual photo details for each result to include complete tag lists. Each photo costs one additional round-trip; use limit to control request volume. Best for getting complete data including tags in one call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of images to return (1-30) |
| `order_by` | string | No | Sort order for results |
| `orientation` | string | No | Filter by photo orientation |
| `query` | string | Yes | Search keyword or theme (e.g., 'nature', 'architecture', 'ocean') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unsplash-com-api-c5fdf147/search_photos_with_tags \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","order_by":"<string>","orientation":"<string>","query":"<string>"}'
```
