Noyo Plan Rates API

The Plan Rates API from Noyo — 1 operation(s) for plan rates.

Operations 1

GET /api/v1/groups/{group_id}/plan_rates Get Plan Rates by Group ID #

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-plan-rates-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-plan-rates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: APIs to manage and consume information about Carriers
  title: Noyo Carrier Carrier Mapped Field Plan Rates API
  version: 1.0.0
servers: []
tags:
- name: Plan Rates
paths:
  /api/v1/groups/{group_id}/plan_rates:
    x-summary: Get Plan Rates by Group ID
    get:
      description: 'Retrieves all temporal plan rates for a specific group, organized by plan ID.

        This endpoint queries plan rates by filtering by group_id.

        '
      operationId: getPlanRatesByGroupId
      parameters:
      - description: Unique identifier of the group to filter by
        example: 123e4567-e89b-12d3-a456-426614174000
        in: path
        name: group_id
        required: true
        schema:
          format: uuid
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedPlanRateByPlanResult'
          description: Successfully retrieved plan rates organized by plan ID
      summary: Get Plan Rates by Group ID
      tags:
      - Plan Rates
components:
  schemas:
    TemporalPlanRateResult:
      properties:
        end_date:
          format: date
          type:
          - string
          - 'null'
        id:
          format: uuid
          type: string
        plan_rate_id:
          format: uuid
          type: string
        rate_structure:
          $ref: '#/components/schemas/RateStructure'
        start_date:
          format: date
          type: string
      required:
      - id
      - plan_rate_id
      - rate_structure
      - start_date
      type: object
    PaginatedPlanRateByPlanResult:
      properties:
        meta:
          allOf:
          - $ref: '#/components/schemas/Meta'
          description: Metadata associated with the response data
        response:
          description: List of plan rate results
          items:
            $ref: '#/components/schemas/PlanRateByPlanResult'
          type: array
      required:
      - meta
      - response
      type: object
      x-field_order:
      - meta
      - response
    Meta:
      properties:
        offset:
          description: The offset of the first response record within the matching data set
          format: int32
          minimum: 0
          readOnly: true
          type: integer
        page_num:
          description: The page number of the response records within the overall data set (1-based integer)
          format: int32
          minimum: 1
          readOnly: true
          type: integer
        page_size:
          description: The maximum number of response records on each page of results
          format: int32
          minimum: 1
          readOnly: true
          type: integer
        total_records:
          description: The total number of records in the entire matching data set
          format: int32
          minimum: 0
          readOnly: true
          type: integer
      required:
      - offset
      - page_num
      - page_size
      type: object
    PlanRateByPlanResult:
      properties:
        plan_id:
          description: Unique identifier of the plan
          format: uuid
          type: string
        plan_rate_id:
          description: Unique identifier of the plan rate
          format: uuid
          type: string
        temporal_rates:
          description: List of temporal rates for this plan
          items:
            $ref: '#/components/schemas/TemporalPlanRateResult'
          type: array
      required:
      - plan_id
      - plan_rate_id
      - temporal_rates
      type: object
    RateStructure:
      properties:
        calculation_type:
          enum:
          - member_based
          - member_based_volume
          - family_unit_based
          type: string
        options:
          items:
            type: string
          type: array
      required:
      - calculation_type
      - options
      type: object