Noyo Volley Definitions API

The Volley Definitions API from Noyo — 2 operation(s) for volley definitions.

Operations 2

GET /api/v1/volley_definitions/{volley_type} Get Volley Definition By Type #
GET /api/v1/volley_definitions/{volley_type}/{version} Get Volley Definition By Version #

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/noyo-volley-definitions-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 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 Specification

noyo-volley-definitions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: APIs to manage and consume information about Carriers
  title: Noyo Carrier Carrier Mapped Field Volley Definitions API
  version: 1.0.0
servers: []
tags:
- name: Volley Definitions
paths:
  /api/v1/volley_definitions/{volley_type}:
    x-summary: Get current version of a volley definition type
    get:
      description: Get a volley definition by type.
      operationId: getVolleyDefinitionByType
      parameters:
      - description: The type of the volley definition to get
        in: path
        name: volley_type
        required: true
        schema:
          example: mapping
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VolleyDefinitionResult'
          description: Successful Response - Returns the volley definition
      summary: Get Volley Definition By Type
      tags:
      - Volley Definitions
  /api/v1/volley_definitions/{volley_type}/{version}:
    x-summary: Get a single volley definition version by type and version
    get:
      description: Get a volley definition by type and version.
      operationId: getVolleyDefinitionByVersion
      parameters:
      - description: The type of the volley definition to get
        in: path
        name: volley_type
        required: true
        schema:
          example: mapping
          type: string
      - description: The version of the volley definition to get
        in: path
        name: version
        required: true
        schema:
          example: 1.0.0
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VolleyDefinitionResult'
          description: Successful Response - Returns the volley definition
      summary: Get Volley Definition By Version
      tags:
      - Volley Definitions
components:
  schemas:
    VolleyTransitionRule:
      properties:
        allowed_attachment_types:
          items:
            type: string
          type: array
        from_step_key:
          type:
          - string
          - 'null'
        from_transition_keys:
          items:
            type: string
          type: array
        requires_attachment:
          type: boolean
        to_step_keys:
          items:
            type: string
          type: array
        transition_key:
          type: string
        trigger_type:
          type: string
      required:
      - from_transition_keys
      - requires_attachment
      - to_step_keys
      - transition_key
      - trigger_type
      type: object
      x-field_order: []
    VolleyStepDefinition:
      properties:
        actor_type:
          type: string
        step_key:
          type: string
        step_type:
          type: string
      required:
      - actor_type
      - step_key
      - step_type
      type: object
      x-field_order: []
    VolleyDefinitionResult:
      properties:
        steps:
          description: Steps in the volley definition
          items:
            $ref: '#/components/schemas/VolleyStepDefinition'
          type: array
        transitions:
          description: Transitions in the volley definition
          items:
            $ref: '#/components/schemas/VolleyTransitionRule'
          type: array
        version:
          type: string
        volley_type:
          type: string
      required:
      - steps
      - transitions
      - version
      - volley_type
      type: object
      x-field_order: []