8x8

8x8 Voice Profile API

The Voice Profile API API from 8x8 — 1 operation(s) for voice profile api.

Operations 1

GET /api/v1/subaccounts/{subAccountId}/speech-profiles Get speech profiles for your account #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/8x8-voice-profile-api-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

8x8-voice-profile-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Voice Profile API
  version: '1.0'
  description: Voice API documentation
  contact:
    name: 8x8 Inc
    url: https://cpaas.8x8.com
    email: cpaas-support@8x8.com
  termsOfService: https://cpaas.8x8.com/sg/terms-and-conditions/
servers:
- url: https://voice.8x8.com
security:
- apiKey: []
tags:
- name: Voice Profile API
paths:
  /api/v1/subaccounts/{subAccountId}/speech-profiles:
    get:
      tags:
      - Voice Profile API
      summary: Get speech profiles for your account
      operationId: get-voice-profile-information
      parameters:
      - $ref: '#/paths/~1api~1v1~1subaccounts~1%7BsubAccountId%7D~1numbers/get/parameters/0'
      responses:
        '200':
          description: Request succeeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  speechProfiles:
                    type: array
                    items:
                      type: object
                      properties:
                        speechProfileCode:
                          type: string
                          description: The unique code for the speech profile.
                        localeCode:
                          type: string
                          description: The locale code for the speech profile.
                        localeDescription:
                          type: string
                          description: The locale description for the speech profile.
                        gender:
                          type: string
                          description: The gender of the voice profile.
                  statusCode:
                    type: integer
                  statusMessage:
                    type: string
                example:
                  speechProfiles:
                  - speechProfileCode: en-US-Standard-A
                    localeCode: en-US
                    localeDescription: EnglishUS
                    gender: F
                  - speechProfileCode: da-DK-Naja
                    localeCode: da-DK
                    localeDescription: Danish
                    gender: F
        '401':
          description: API key not found or invalid
        '403':
          description: Resource not accessible
        '404':
          description: Resource not found
        '500':
          description: Server error
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: '* 8x8 SMS API accepts an **ApiKey Bearer Token** authentication method.


        * You can generate  tokens from your customer portal  [https://connect.8x8.com/](https://connect.8x8.com/)


        * You need to include the following header in your requests: `Authorization: Bearer {apiKey}`


        > **Note**: Replace the `{apiKey}` placeholder with the key generated from the customer portal.

        ---

        If you haven''t created your account yet, please go to 8x8 website [https://connect.8x8.com](https://connect.8x8.com) to sign up.

        '