Speechmatics Projects API
The Projects API from Speechmatics — 2 operation(s) for projects.
The Projects API from Speechmatics — 2 operation(s) for projects.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/speechmatics-projects-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Speechmatics Management Projects API
version: 1.0.0
description: The Speechmatics Management API is used to manage projects and API keys programmatically. Supports creating, listing, updating, and deleting projects and API keys for Speechmatics services including batch, real-time, flow, and TTS.
contact:
email: support@speechmatics.com
x-providerName: speechmatics
x-serviceName: management-api
servers:
- url: https://mp.speechmatics.com/v1
description: Speechmatics Management Platform API
security:
- bearerAuth: []
tags:
- name: Projects
paths:
/projects:
get:
summary: Get all projects
operationId: listProjects
tags:
- Projects
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ProjectsResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'410':
description: Gone
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
post:
summary: Create a new project
operationId: createProject
tags:
- Projects
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateProjectRequest'
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'410':
description: Gone
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/projects/{project_id}:
parameters:
- name: project_id
in: path
required: true
schema:
type: integer
description: The project ID.
get:
summary: Get a project by ID
operationId: getProject
tags:
- Projects
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Project was not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'410':
description: Project Gone
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
put:
summary: Update a project
operationId: updateProject
tags:
- Projects
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateProjectRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'404':
description: Not Found
delete:
summary: Delete a project
operationId: deleteProject
tags:
- Projects
responses:
'204':
description: Project deleted.
'403':
description: Forbidden (outstanding payments)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Project was not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'410':
description: Gone
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
UpdateProjectRequest:
type: object
required:
- name
properties:
name:
type: string
description: The new name for the project.
Project:
type: object
required:
- project_id
properties:
project_id:
type: integer
is_default:
type:
- boolean
- 'null'
is_active:
type:
- boolean
- 'null'
name:
type: string
description:
type: string
created_at:
type: string
format: date-time
deleted_at:
type: string
format: date-time
ProjectsResponse:
type: array
items:
$ref: '#/components/schemas/Project'
ErrorResponse:
type: object
required:
- code
- error
properties:
code:
type: integer
description: The HTTP status code.
error:
type: string
description: The error message.
detail:
type: string
description: Additional error details.
CreateProjectRequest:
type: object
required:
- name
properties:
contract_id:
type: integer
description: Optional contract ID for the project.
name:
type: string
description: The name of the project.
description:
type: string
description: A description of the project and its intended use.
securitySchemes:
bearerAuth:
type: apiKey
in: header
name: Authorization
description: 'Bearer token authentication. Use the format: Bearer $API_KEY_OR_JWT'