ToolAssay

Text-to-speech with speed (0.7x-2.0x) and quality-step (1-100) control, 1 of 10

Text-to-speech with speed (0.7x-2.0x) and quality-step (1-100) control, 1 of 10 standard voices across 31 languages, up to 500 characters, returned as WAV audio. Use it to: speak an urgent alert faster, slow a reading for clarity, tune synthesis quality against latency, produce a paced voice cue for a UI, generate a rushed or calm-toned notification. USDC on Base via x402, no API key.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
242 msmedian answer time
$0.003listed price per call
$0.003price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://voice.forgemesh.io/v1/tts/pro

CategoryImage and media
Provider hostvoice.forgemesh.io
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days4 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 242 ms

Example input (from the provider)

{
  "body": {
    "lang": "en",
    "text": "Hello world",
    "voice": "M1"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "lang": {
              "description": "Language code; 31 languages supported",
              "enum": [
                "en",
                "ko",
                "ja",
                "ar",
                "bg",
                "cs",
                "da",
                "de",
                "el",
                "es",
                "et",
                "fi",
                "fr",
                "hi",
                "hr",
                "hu",
                "id",
                "it",
                "lt",
                "lv",
                "nl",
                "pl",
                "pt",
                "ro",
                "ru",
                "sk",
                "sl",
                "sv",
                "tr",
                "uk",
                "vi"
              ],
              "type": "string"
            },
            "speed": {
              "description": "Pro/Custom expressive speed control, 0.7-2.0. Presets: slow 0.7, normal 1.0, fast 1.3, rapid 1.6",
              "maximum": 2,
              "minimum": 0.7,
              "type": "number"
            },
            "steps": {
              "description": "Pro/Custom quality control, 1-100. Presets: draft 4, standard 8, high 16, ultra 24",
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            },
            "text": {
              "description": "Text to synthesize into speech, max 2000 characters. Use non-long routes for 1-500 chars and -long routes for 501-2000 chars.",
              "maxLength": 2000,
              "minLength": 1,
              "type": "string"
            },
            "voice": {
              "description": "Standard voice: M1-M5 or F1-F5",
              "enum": [
                "M1",
                "M2",
                "M3",
                "M4",
                "M5",
                "F1",
                "F2",
                "F3",
                "F4",
                "F5"
              ],
              "type": "string"
            }
          },
          "required": [
            "text"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "audio": {
              "description": "Inline WAV bytes in the HTTP response body",
              "type": "string"
            },
            "content_type": {
              "const": "audio/wav",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON