# Docs Citrix — 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 across Citrix's complete product documentation library to quickly find relevant information, guides, and solutions for all Citrix products and versions in one place. Get instant access to technical documentation without navigating multiple product sites.

**Category:** Developer Tools | **Website:** [docs.citrix.com/](https://docs.citrix.com/) | **Docs:** [parse.bot/marketplace/8a302cac-9dfd-4d21-8907-292382a344d4/docs-citrix-com-api](https://parse.bot/marketplace/8a302cac-9dfd-4d21-8907-292382a344d4/docs-citrix-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-docs-citrix-com-api-8a302cac/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_docs

Full-text search across Citrix product documentation. Returns ranked results with title, URL, snippet, product name, date, and file type. Supports filtering by product, version, and file type via facet values returned in each response. Pagination is offset-based: advance `offset` by `limit` to fetch subsequent pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `file_type` | string | No | Filter results by file type. Use a value from the `c_fileType` facet: 'HTML' or 'PDF'. |
| `limit` | integer | No | Maximum number of results per page (1-50). |
| `offset` | integer | No | Zero-based item offset for pagination. |
| `product` | string | No | Filter results to a specific product. Use a value from the `c_productName` facet in the response (e.g. 'Citrix Virtual Apps and Desktops'). |
| `query` | string | Yes | Search query text matched against documentation titles and body content. |
| `version` | string | No | Filter results to a specific version. Use a value from the `c_versionType` facet in the response (e.g. 'Current Release', '2511'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-docs-citrix-com-api-8a302cac/search_docs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"file_type":"<string>","limit":"<integer>","offset":"<integer>","product":"<string>","query":"<string>","version":"<string>"}'
```
