> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voicelab360.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Workforce and Licensing

> Discover professional voice talent and manage licensing agreements.

# Workforce and Licensing

The Workforce API provides programmatic access to the VoiceLab360 talent network for discovery, search, campaign creation, licensing, and media retrieval.

<Note>
  Workforce discovery and licensing endpoints require a verified buyer account. See [Buyer Verification](/buyers/overview).
</Note>

## Endpoints

| Endpoint                           | Description                                   |
| ---------------------------------- | --------------------------------------------- |
| `GET /api/v1/workforce/discover`   | Browse available voice talent                 |
| `GET /api/v1/workforce/search`     | Search by role, genre, language, or attribute |
| `POST /api/v1/workforce/campaign`  | Create a talent campaign brief                |
| `POST /api/v1/workforce/licensing` | Initiate a license request                    |
| `GET /api/v1/workforce/media`      | Retrieve licensed media assets                |

## Discovery

```bash theme={null}
curl "https://www.voicelab360.com/api/v1/workforce/discover?genre=animation&language=en" \
  -H "Authorization: Bearer vl360_live_YOUR_KEY"
```

### Query parameters

| Parameter  | Type    | Description                                                            |
| ---------- | ------- | ---------------------------------------------------------------------- |
| `genre`    | string  | `animation`, `commercial`, `audiobook`, `gaming`, `corporate`, `promo` |
| `language` | string  | BCP-47 language code                                                   |
| `role`     | string  | `voice_actor`, `narrator`, `host`, `announcer`                         |
| `verified` | boolean | Return only verified creators                                          |

## Licensing

```bash theme={null}
curl -X POST https://www.voicelab360.com/api/v1/workforce/licensing \
  -H "Authorization: Bearer vl360_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "creator_id": "creator_abc123",
    "usage_type": "commercial",
    "territory": "worldwide",
    "duration_months": 12
  }'
```

A 1% Success Fee is applied to all completed Workforce licensing agreements.
