Speech 01 Turbo is a text-to-speech api from minimax that teams use to call speech 01 turbo through one stable api surface through one SkillBoss endpoint.
It returns structured output from model minimax/speech-01-turbo, supports pay as you go billing, and gives agents a stable invocation contract instead of vague routing hints.
Call Speech 01 Turbo through one stable API surface
Ship integrations faster without vendor account setup
Use the capability directly inside human and agent workflows
Direct Answer
Speech 01 Turbo is a text-to-speech api exposed through SkillBoss. Use it when you need to call speech 01 turbo through one stable api surface, want one stable request surface, and need a model ID and billing path that both humans and agents can act on quickly.
Best Fit
You want Speech 01 Turbo behind one stable SkillBoss endpoint instead of wiring up minimax directly.
You need a canonical page with copyable request shape, pricing context, and model ID for developer handoff or agent routing.
You are comfortable using the standard API key path for token-based or variable-cost execution.
Watchouts
This API is not a strong x402 or Payment Later fit today because the final cost is not deterministic before execution.
If you need a different capability category, use the catalog and vendor links below instead of forcing the wrong endpoint.
Capability Snapshot
Endpoint
POST /v1/run
Auth
Bearer API key
Model
minimax/speech-01-turbo
Payments
Standard API key
Canonical URL
https://www.skillboss.co/es/use/speech-01-turbo-api
Step 1
Use https://api.skillboss.co/v1/run with a standard JSON body and your SkillBoss API key.
Step 2
Set "model": "minimax/speech-01-turbo" so your app or agent routes to the intended capability consistently.
Step 3
This API should use the standard API key flow before machine payments. Keep the standard API key flow as the default unless your agent specifically benefits from machine-native payment rails.
Request Shape
{
"model": "minimax/speech-01-turbo",
"inputs": {
"text": "Hello from SkillBoss.",
"voice": "alloy"
}
}Example Response
{
"id": "run_123",
"output": {
"status": "completed"
}
}For Humans
Developers embedding Speech 01 Turbo inside apps quickly
Operators running repeatable workflows from one API key
Teams standardizing on one billing and auth layer instead of many
For Agents
Speech 01 Turbo inside agent loops that need a stable capability URL
Automations that benefit from one auth model across many APIs
Multi-step agents that need direct, copyable invocation patterns
Call Speech 01 Turbo through one stable API surface
Ship integrations faster without vendor account setup
Use the capability directly inside human and agent workflows
curl -X POST https://api.skillboss.co/v1/run \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax/speech-01-turbo",
"inputs": {
"text": "Hello from SkillBoss.",
"voice": "alloy"
}
}'import requests
response = requests.post(
"https://api.skillboss.co/v1/run",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"model": "minimax/speech-01-turbo",
"inputs": {
"text": "Hello from SkillBoss.",
"voice": "alloy"
}
}
)
print(response.json())Payment Options
This API should use the standard API key flow before machine payments. This endpoint is priced by tokens or variable execution cost, so the final price is not deterministic before the run completes. That makes x402 and Payment Later secondary options rather than the primary billing path.
x402
Status: Not recommended. Use x402 when an agent can know the exact price before execution and pay onchain request by request.
Payment Later
Status: Not recommended. Use Payment Later when an agent should pay with card-backed machine payments instead of prefunded crypto.
# Speech 01 Turbo uses variable or token-based pricing,
# so x402 is not the primary path for this model today.
import requests
response = requests.post(
"https://api.skillboss.co/v1/run",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"model": "minimax/speech-01-turbo",
"inputs": {
"text": "Hello from SkillBoss.",
"voice": "alloy"
}
}
)
print(response.json())# Speech 01 Turbo does not have deterministic pricing up front,
# so Payment Later is not the primary path for this model today.
import requests
response = requests.post(
"https://api.skillboss.co/v1/run",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"model": "minimax/speech-01-turbo",
"inputs": {
"text": "Hello from SkillBoss.",
"voice": "alloy"
}
}
)
print(response.json())Discover
Compare adjacent capabilities and find alternatives from one unified catalog.
Vendor
See the rest of this vendor's public endpoints and compare them side by side.
Agents
Use the same capability inside agent tools instead of maintaining separate provider setup.
Canonical
The canonical page, model ID, and request surface are visible above the fold, which reduces ambiguity for searchers and agents.
Extractable
Direct-answer, best-fit, watchout, and invocation sections expose the critical facts in short standalone passages.
Operational
Payment guidance is separated from quick start, so users can launch first and choose x402 or Payment Later only when it actually fits.
Speech 01 Turbo is a text-to-speech api available through SkillBoss. Teams use it for call speech 01 turbo through one stable api surface without managing separate vendor credentials.
Send a POST request to https://api.skillboss.co/v1/run with "model": "minimax/speech-01-turbo" and an "inputs" object containing the capability-specific parameters shown in the request example on this page.
Successful responses return a run identifier plus a structured output payload. The exact shape varies by capability, and this page shows a representative example response block so developers and agents can plan parsing correctly.
Speech 01 Turbo uses pay as you go pricing on SkillBoss. Check the pricing card and payment section on this page before wiring billing logic into your app or agent.
This API should use the standard API key flow before machine payments. This endpoint is priced by tokens or variable execution cost, so the final price is not deterministic before the run completes. That makes x402 and Payment Later secondary options rather than the primary billing path.
The underlying vendor for this endpoint is minimax. SkillBoss provides the unified API surface, billing layer, and canonical discovery page for Speech 01 Turbo.
Get your API key, call minimax/speech-01-turbo, and use this capability in both product workflows and AI agents.