# Piper Jarvis Text to Speech — British AI Voice (`myagizm/piper-jarvis-text-to-speech`) Actor

Give your AI assistant a signature British butler voice. WAV delivery. $0.01 per started 1,000 characters — one all-inclusive price.

- **URL**: https://apify.com/myagizm/piper-jarvis-text-to-speech.md
- **Developed by:** [MYM](https://apify.com/myagizm) (community)
- **Categories:** AI, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00 / 1,000 started 1,000 characters (all-inclusive)s

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Piper Jarvis Text to Speech — Signature British AI Voice for Assistants

**Give your AI assistant a signature voice: a polished, high-register British English narrator — one flat all-inclusive price, no subscriptions.**

Built for AI agents, LLM pipelines, n8n / Zapier / Make automations and app prototyping. Pay only for successfully delivered audio.

![Type](https://img.shields.io/badge/type-Paid%20API-blue) ![Voice](https://img.shields.io/badge/voice-British%20English%20%22Jarvis%22-green) ![Price](https://img.shields.io/badge/price-%240.01%20%2F%201k%20chars-brightgreen) ![Output](https://img.shields.io/badge/output-WAV%20%2B%20download%20URL-orange)

### Table of contents

- [What can it do](#what-can-it-do)
- [Who uses it](#who-uses-it)
- [Input fields](#input-fields)
- [How to use](#how-to-use)
- [Output example](#output-example)
- [Pricing](#pricing)
- [Integrations and API](#integrations-and-api)
- [Tips](#tips)
- [FAQ](#faq)
- Related searches
- [Disclaimer](#disclaimer)
- [中文说明](#中文说明)

### What can it do

✅ Convert plain text (1–2,000 Unicode code points per run) into speech
✅ One signature voice: `en_GB-jarvis-high` — a polished, high-register British English narrator, the classic "AI butler" character
✅ Returns a WAV audio clip plus SHA-256 checksum, byte size and expiry timestamp
✅ One flat all-inclusive price per started 1,000 characters — no start fee, no platform surcharge
✅ Charges only on successful, non-empty delivery — failed runs cost nothing
✅ Works with AI agents and LLM tools via standardized input/output

### Who uses it

- **AI agent developers** who want a distinctive butler-style assistant voice
- **Automation builders** on n8n, Zapier, Make generating notifications, announcements or briefings
- **App developers** prototyping voice assistants and smart-home personality features
- **Content creators** producing narrator-style intros and explainers

### Input fields

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `text` | string | ✅ | Plain text to synthesize, 1–2,000 Unicode code points. Billing counts code points in started blocks of 1,000 ($0.01 per block, minimum one block). |
| `voice` | select | ❌ | Fixed to `en_GB-jarvis-high`. No cloning, no alternative voices, no model selectors. |
| `acceptTerms` | boolean | ✅ | Must be `true`: you agree to disclose synthetic speech and not impersonate or mislead. |

### How to use

1. **Add your text** — paste or send 1–2,000 characters.
2. **Accept the synthetic-speech terms** — set `acceptTerms: true`.
3. **Run** — the actor returns a signed HTTPS download URL (valid 24 hours), audio metadata and billing details in the Output tab and dataset.

#### Input example

```json
{
  "text": "Good evening. All systems are operating normally.",
  "voice": "en_GB-jarvis-high",
  "acceptTerms": true
}
```

### Output example

Real run output (abridged):

```json
{
  "ok": true,
  "kind": "jarvis",
  "voice": "en_GB-jarvis-high",
  "charCount": 46,
  "duration": 3.8,
  "audioUrl": "https://minio.foxtools.de/...?X-Amz-Signature=...",
  "audioDelivery": "minio-presigned",
  "deliveryObjectKey": "foxo81/audio/....wav",
  "audioBytes": 335160,
  "audioSha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
  "expiresAt": "2026-09-19T12:00:00Z",
  "billingUnit": "text-1k-chars",
  "billingQuantity": 46,
  "billingCount": 1,
  "billingPriceUsdPerBlock": 0.01,
  "totalChargeUsd": 0.01,
  "billingIsAllInclusive": true
}
```

### Pricing

**$0.01 per started 1,000 characters — all-inclusive.**

The math, shown plainly:

| Characters | Blocks (`ceil(chars/1000)`) | Cost |
| --- | --- | --- |
| 1–1,000 | 1 | $0.01 |
| 1,001–2,000 | 2 | $0.02 |
| 1,000,000 | 1,000 | **$10.00** |

One price covers speech synthesis, Apify platform usage, storage and audio delivery. Blocks are charged only for a successfully delivered, non-empty clip; failed runs cost $0.

### Integrations and API

**Sync run (get dataset items directly):**

```bash
curl -X POST "https://api.apify.com/v2/acts/myagizm~piper-jarvis-text-to-speech/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"text":"Good morning. Here is your daily briefing.","acceptTerms":true}'
```

**Async run:**

```bash
curl -X POST "https://api.apify.com/v2/acts/myagizm~piper-jarvis-text-to-speech/runs?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"text":"Systems nominal.","acceptTerms":true}'
```

**n8n / Zapier / Make:** use the Apify node, pick this actor, map your text field to `text` and set `acceptTerms: true`.

### Tips

💡 Pair with a Whisper STT actor for full voice-loop assistants.
💡 Download the WAV before `expiresAt` (24 h) if you need a permanent copy.
💡 2,000 characters ≈ 2 minutes of narration — plan scripts accordingly.

### FAQ

**Q: What does the voice sound like?** A polished, high-register British English narrator — the classic "AI butler" character, similar in spirit to a famous fictional assistant.

**Q: Can I use other languages?** This actor speaks English (en\_GB). For 31 languages use our Supertonic 3 Text to Speech actor.

**Q: Can I clone a voice?** No. One curated preset keeps quality consistent.

**Q: What audio format do I get?** Uncompressed WAV via a signed HTTPS download URL, valid 24 hours.

**Q: Do failed runs cost money?** No.

**Q: Can I use this commercially?** Yes — disclose synthetic speech and do not impersonate real people.

### Related searches

jarvis voice api · british tts api · ai butler voice · assistant voice api · english text to speech · piper tts · ai narrator api · butler ai voice · tts for n8n · smart home voice api

### Disclaimer

Output is AI-generated speech. You are responsible for disclosing synthetic audio and for not using it to impersonate, defraud or mislead. We do not claim quality equivalence with any third-party service.

### 中文说明

## Piper Jarvis 文字转语音 — 英式 AI 管家音色

**为你的 AI 助手配一个标志性声音：高质感英式英语旁白 — 一个全包价，无订阅。**

✅ 1–2000 字符/次，返回 WAV + 24 小时下载链接
✅ 固定音色：`en_GB-jarvis-high`（英式管家风格）
✅ 计费：每 1,000 字符 $0.01，失败不收费

#### 输入字段

| 字段 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| `text` | string | ✅ | 纯文本，1–2000 字符 |
| `voice` | select | ❌ | 固定 en\_GB-jarvis-high |
| `acceptTerms` | boolean | ✅ | 必须为 true |

#### 相关搜索

英式英语 TTS · AI 管家语音 · 旁白 API · 英语配音 API · n8n 语音

# Actor input Schema

## `text` (type: `string`):

Plain text, 1–2000 Unicode code points. Billed per started 1,000 Unicode code points ($0.01 per started block, minimum one block).

## `voice` (type: `string`):

Single pinned Piper voice. No cloning, no alternative voices, no model selectors.

## `acceptTerms` (type: `boolean`):

Required. Output is AI-generated speech and must be disclosed as synthetic. Do not impersonate real people or mislead listeners about origin.

## Actor input object example

```json
{
  "text": "Hello! This is an AI-generated voice sample. Thank you for trying our text to speech Actor.",
  "voice": "en_GB-jarvis-high",
  "acceptTerms": true
}
```

# Actor output Schema

## `result` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "text": "Hello! This is an AI-generated voice sample. Thank you for trying our text to speech Actor.",
    "acceptTerms": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("myagizm/piper-jarvis-text-to-speech").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "text": "Hello! This is an AI-generated voice sample. Thank you for trying our text to speech Actor.",
    "acceptTerms": True,
}

# Run the Actor and wait for it to finish
run = client.actor("myagizm/piper-jarvis-text-to-speech").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "text": "Hello! This is an AI-generated voice sample. Thank you for trying our text to speech Actor.",
  "acceptTerms": true
}' |
apify call myagizm/piper-jarvis-text-to-speech --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,myagizm/piper-jarvis-text-to-speech"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/LrfcVJly39bi3mbMc/builds/DSeRrIMMy8ibrioXv/openapi.json
