Respeecher stats API
The stats API from Respeecher — 3 operation(s) for stats.
The stats API from Respeecher — 3 operation(s) for stats.
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/respeecher-stats-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: Voice Markertplace accents Stats API
version: 0.6.0
servers:
- url: https://gateway.respeecher.com
description: Respeecher Voice Marketplace API gateway
tags:
- name: stats
paths:
/api/stats:
get:
tags:
- stats
summary: Get Stats
operationId: get_stats_api_stats_get
parameters:
- required: false
schema:
title: X-Csrf-Token
type: string
name: x-csrf-token
in: header
- required: false
schema:
title: Api-Key
type: string
name: api-key
in: header
- required: false
schema:
title: Session Id
type: string
name: session_id
in: cookie
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/StatsUserResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/stats/projects:
post:
tags:
- stats
summary: Get Project Stats
operationId: get_project_stats_api_stats_projects_post
parameters:
- required: false
schema:
title: X-Csrf-Token
type: string
name: x-csrf-token
in: header
- required: false
schema:
title: Api-Key
type: string
name: api-key
in: header
- required: false
schema:
title: Session Id
type: string
name: session_id
in: cookie
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/StatsProjectRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
title: Response Get Project Stats Api Stats Projects Post
type: array
items:
$ref: '#/components/schemas/StatsProjectResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/stats/folders:
post:
tags:
- stats
summary: Get Folder Stats
operationId: get_folder_stats_api_stats_folders_post
parameters:
- required: false
schema:
title: X-Csrf-Token
type: string
name: x-csrf-token
in: header
- required: false
schema:
title: Api-Key
type: string
name: api-key
in: header
- required: false
schema:
title: Session Id
type: string
name: session_id
in: cookie
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/StatsFolderRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
title: Response Get Folder Stats Api Stats Folders Post
type: array
items:
$ref: '#/components/schemas/FolderStats'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
ConversionStats:
title: ConversionStats
required:
- total
- completed
- in_progress
- failed
type: object
properties:
total:
title: Total
type: integer
completed:
title: Completed
type: integer
in_progress:
title: In Progress
type: integer
failed:
title: Failed
type: integer
StatsDuration:
title: StatsDuration
required:
- total
- current_month
type: object
properties:
total:
title: Total
type: integer
current_month:
title: Current Month
type: integer
StatsFolderRequest:
title: StatsFolderRequest
required:
- folder_ids
type: object
properties:
folder_ids:
title: Folder Ids
maxItems: 200
minItems: 0
type: array
items:
type: string
format: uuid4
StatsDurationPreviousMonthes:
title: StatsDurationPreviousMonthes
required:
- total
- current_month
- previous_monthes
type: object
properties:
total:
title: Total
type: integer
current_month:
title: Current Month
type: integer
previous_monthes:
title: Previous Monthes
type: array
items:
$ref: '#/components/schemas/PreviousMonthDurationStat'
HTTPValidationError:
title: HTTPValidationError
type: object
properties:
detail:
title: Detail
type: array
items:
$ref: '#/components/schemas/ValidationError'
StatsUserResponse:
title: StatsUserResponse
required:
- time_converted
- conversions
- models
type: object
properties:
time_converted:
$ref: '#/components/schemas/StatsDurationPreviousMonthes'
conversions:
$ref: '#/components/schemas/ConversionStats'
models:
title: Models
type: array
items:
$ref: '#/components/schemas/ModelStats'
ModelStats:
title: ModelStats
required:
- id
- name
- conversions_count
- converted_time
type: object
properties:
id:
title: Id
type: string
format: uuid4
name:
title: Name
type: string
conversions_count:
title: Conversions Count
type: integer
converted_time:
title: Converted Time
type: number
StatsProjectRequest:
title: StatsProjectRequest
required:
- project_ids
type: object
properties:
project_ids:
title: Project Ids
maxItems: 200
minItems: 0
type: array
items:
type: string
format: uuid4
PreviousMonthDurationStat:
title: PreviousMonthDurationStat
required:
- month
- duration
type: object
properties:
month:
title: Month
type: string
format: date
duration:
title: Duration
type: number
ValidationError:
title: ValidationError
required:
- loc
- msg
- type
type: object
properties:
loc:
title: Location
type: array
items:
anyOf:
- type: string
- type: integer
msg:
title: Message
type: string
type:
title: Error Type
type: string
StatsProjectResponse:
title: StatsProjectResponse
required:
- project_id
- time_converted
- conversions
type: object
properties:
project_id:
title: Project Id
type: string
format: uuid4
example: 00000000-0000-0000-0000-000000000001
time_converted:
$ref: '#/components/schemas/StatsDuration'
conversions:
$ref: '#/components/schemas/ConversionStats'
FolderStats:
title: FolderStats
required:
- folder_id
- stats
type: object
properties:
folder_id:
title: Folder Id
type: string
format: uuid4
example: 00000000-0000-0000-0000-000000000001
stats:
$ref: '#/components/schemas/ConversionStats'