Vyond Parameter API

APIs for getting parameters information

Operations 1

GET /rest/v1/parameters/ Get API parameters information #

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/vyond-parameter-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

vyond-parameter-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Vyond Parameter API
  version: 1.1.0
  description: 'Operations tagged Parameter across 2 of this provider''s published API definitions: vyond-openapi-original.json, vyond-parameter-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.vyond.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Parameter
  description: 'APIs for getting parameters information

    '
paths:
  /rest/v1/parameters/:
    get:
      operationId: ParameterController.getParameters
      parameters:
      - in: query
        name: feature
        required: true
        schema:
          type: string
          enum:
          - ai-avatar
          description: Target feature
      - in: query
        name: parameterKeys
        required: false
        schema:
          items:
            enum:
            - avatarProvider
            - avatarId
            - avatarBackground
            - avatarCustomBackground
            - languageCode
            - voiceProvider
            - voiceId
            - voiceEngine
            - voicePitch
            - voiceRate
            - voiceStyle
            type: string
          type: array
          description: Filter by parameter keys
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetParametersResBody'
          description: API parameters information
        '401':
          description: Unauthorized - missing or invalid credentials
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
          description: Forbidden - missing required scope or invalid owner type, or user state validation failed
        '429':
          description: Too Many Requests - rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
          description: Internal Server Error - unexpected error while retrieving parameters
      summary: Get API parameters information
      tags:
      - Parameter
      security:
      - bearer: []
      description: Get information (e.g. data type and values) of API parameters, some values may be filtered based on user plan and account available features.
components:
  schemas:
    ValidationDetail:
      properties:
        property:
          type: string
          description: The property that failed validation
        message:
          items:
            type: string
          type: array
          description: Validation error messages for the property
      type: object
      required:
      - property
      - message
    ComponentsObject:
      properties:
        schemas:
          type: object
          description: OpenAPI schema lookup by name, i.e. `Record<string, Schema>`
      type: object
      required:
      - schemas
    ValueObject:
      properties:
        value:
          not:
            type: 'null'
          description: Parameter value
        name:
          type: string
          description: Display name of the parameter value
        properties:
          type: object
          description: Properties of the parameter value
      type: object
      required:
      - value
    Parameter:
      properties:
        key:
          enum:
          - avatarProvider
          - avatarId
          - avatarBackground
          - avatarCustomBackground
          - languageCode
          - voiceProvider
          - voiceId
          - voiceEngine
          - voicePitch
          - voiceRate
          - voiceStyle
          type: string
        name:
          type: string
        schema:
          type: object
          description: OpenAPI schema object
        values:
          items:
            $ref: '#/components/schemas/ValueObject'
          type: array
          description: Parameter values information
      type: object
      required:
      - key
      - name
      - schema
      - values
    ApiErrorResponse:
      properties:
        err:
          type: string
          description: Error code identifying the specific error
        reason:
          type: string
          description: Additional reason describing why the error occurred
        message:
          type: string
          description: Error message, used as an alternative to reason for non-enumerated error messages
        scimType:
          type: string
          description: SCIM error type, present on SCIM 409 Conflict responses (e.g. uniqueness)
        details:
          items:
            $ref: '#/components/schemas/ValidationDetail'
          type: array
          description: Validation error details, present when err is REQUEST_VALIDATION_FAILED
      type: object
      required:
      - err
    GetParametersResBody:
      properties:
        parameters:
          items:
            $ref: '#/components/schemas/Parameter'
          type: array
          description: Parameters available for the feature.
        components:
          $ref: '#/components/schemas/ComponentsObject'
          type: object
          description: OpenAPI components object
      type: object
      required:
      - parameters
      - components
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
x-refined-from:
- vyond-openapi-original.json
- vyond-parameter-api-openapi.yml