# Workday — 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.

> Browse Workday's complete developer documentation, retrieve individual guide pages in Markdown format, and search across topics to find the information you need. Access the curated homepage sections and navigate the full documentation tree to quickly locate resources for your development projects.

**Category:** Developer Tools | **Website:** [developer.workday.com/documentation](https://developer.workday.com/documentation) | **Docs:** [parse.bot/marketplace/2eb3a757-cbd3-427e-bbe4-03f7b90f716e/developer-workday-com-api](https://parse.bot/marketplace/2eb3a757-cbd3-427e-bbe4-03f7b90f716e/developer-workday-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-developer-workday-com-api-2eb3a757/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_doc_home

Get the documentation homepage configuration with curated sections, link groups, and recommended pages. Returns the 'Get Started', 'Apps', and 'Extend Services' sections with their link groups and individual links.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-workday-com-api-2eb3a757/get_doc_home \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_doc_page

Get a specific documentation page by its slug. Returns the page title, metadata (category, keywords, layout), and full content in Markdown format. Slugs can be obtained from get_documentation_tree or search_documentation results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The page identifier slug (e.g. 'dlx1529688880052' or 'GUID-1293c9bb-ea02-48cd-a523-254b5060b3a6-enHYPHENus'). Available from get_documentation_tree pages[*].slug or search_documentation results[*].slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-workday-com-api-2eb3a757/get_doc_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_documentation_tree

Get the complete documentation navigation tree as a flat list of all pages with their titles, URLs, and slugs. Returns approximately 1200+ documentation page entries covering Integration Apps, Extend Apps, Workday APIs, and Developer Copilot.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-workday-com-api-2eb3a757/get_documentation_tree \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_documentation

Search the documentation tree for pages whose titles match a query string (case-insensitive substring match). Returns matching pages with their titles, URLs, and slugs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search term to match against documentation page titles (case-insensitive). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-workday-com-api-2eb3a757/search_documentation \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
