# Help Redbubble — 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.

> Retrieve the names and XPaths of all form fields from Redbubble's help center ticket submission forms to streamline your support ticket creation process. Quickly map out the exact structure and location of each input field needed to submit your help requests programmatically.

**Category:** E-commerce | **Website:** [help.redbubble.com/hc/en-us/requests/new?ticket_form_id=360000954531](https://help.redbubble.com/hc/en-us/requests/new?ticket_form_id=360000954531) | **Docs:** [parse.bot/marketplace/1fbc2288-2bac-4369-977a-513a8500769e/help-redbubble-com-api](https://parse.bot/marketplace/1fbc2288-2bac-4369-977a-513a8500769e/help-redbubble-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-help-redbubble-com-api-1fbc2288/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_form_fields

Retrieve all form fields with their names, XPaths, and input types from a Redbubble help center ticket form. Each ticket_form_id corresponds to a different request type (e.g. Notice and Takedown, Counter Notice, order issues). Results are a single-page list of field descriptors for the specified form.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticket_form_id` | string | No | Zendesk ticket form ID identifying which form to extract fields from. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-help-redbubble-com-api-1fbc2288/get_form_fields \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ticket_form_id":"<string>"}'
```
