Kentik ASGroupService API

The ASGroupService API from Kentik — 2 operation(s) for asgroupservice.

Operations 5

GET /as_group/v202212/as_group List all AS groups. #
POST /as_group/v202212/as_group Configure a new AS group. #
PUT /as_group/v202212/as_group/{asGroup.id} Updates configuration of a AS group. #
GET /as_group/v202212/as_group/{asGroup.id} Retrieve configuration of a AS group. #
DELETE /as_group/v202212/as_group/{asGroup.id} Delete configuration of a AS group. #

Specifications

Other Resources

🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-synthetics.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-cloud-export.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-alerting.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-mitigation.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-alert-policy.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-device.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-user.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-site.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-label.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-as-group.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-notification-channel.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-capacity-plan.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-bgp-monitoring.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-mkp.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-kmi.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-cost.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-custom-dimension.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-flow-tag.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-ai-advisor.proto
🔗
Protobuf
https://raw.githubusercontent.com/api-evangelist/kentik/refs/heads/main/grpc/kentik-audit.proto

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/kentik-asgroupservice-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

kentik-asgroupservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AI Advisor AiAdvisorDataService AS Group Service API
  description: '# Overview

    Provides programmatic access to AI Advisor.'
  version: v202511
  contact:
    name: Kentik API Engineering
    url: https://github.com/kentik/api-schema-public
servers:
- url: https://grpc.api.kentik.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- email: []
  token: []
tags:
- name: ASGroupService
paths:
  /as_group/v202212/as_group:
    get:
      summary: List all AS groups.
      description: Returns list of configured AS groups.
      operationId: ListASGroups
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v202212ListASGroupsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      tags:
      - ASGroupService
    post:
      summary: Configure a new AS group.
      description: Create configuration for a new AS group. Returns the newly created configuration.
      operationId: CreateASGroup
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v202212CreateASGroupResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v202212CreateASGroupRequest'
        required: true
      tags:
      - ASGroupService
  /as_group/v202212/as_group/{asGroup.id}:
    put:
      summary: Updates configuration of a AS group.
      description: Replaces configuration of a AS group with attributes in the request. Returns the updated configuration.
      operationId: UpdateASGroup
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v202212UpdateASGroupResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: asGroup.id
        description: System generated unique identifier
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ASGroupServiceUpdateASGroupBody'
        required: true
      tags:
      - ASGroupService
    get:
      summary: Retrieve configuration of a AS group.
      description: Returns configuration of a AS group specified by ID.
      operationId: GetASGroup
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v202212GetASGroupResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: asGroup.id
        description: ID of the requested AS group
        in: path
        required: true
        schema:
          type: string
      tags:
      - ASGroupService
    delete:
      summary: Delete configuration of a AS group.
      description: Deletes configuration of a AS group with specific ID.
      operationId: DeleteASGroup
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v202212DeleteASGroupResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: asGroup.id
        description: ID of the AS group to be deleted
        in: path
        required: true
        schema:
          type: string
      tags:
      - ASGroupService
components:
  schemas:
    ASGroupServiceUpdateASGroupBody:
      type: object
      properties:
        asGroup:
          type: object
          properties:
            name:
              type: string
              description: User selected unique name
            asn:
              type: array
              items:
                type: string
              description: List of ASNs
            createdDate:
              type: string
              format: date-time
              description: Creation timestamp (UTC)
              readOnly: true
            updatedDate:
              type: string
              format: date-time
              description: Last modification timestamp (UTC)
              readOnly: true
          title: ASGroupConcise
      title: UpdateASGroupRequest
      required:
      - name
      - asGroup
    v202212AutonomousSystem:
      type: object
      properties:
        asn:
          type: integer
          format: int64
        name:
          type: string
      title: AutonomousSystem
    v202212GetASGroupResponse:
      type: object
      properties:
        asGroup:
          $ref: '#/components/schemas/v202212ASGroupDetailed'
      title: GetASGroupResponse
    v202212UpdateASGroupResponse:
      type: object
      properties:
        asGroup:
          $ref: '#/components/schemas/v202212ASGroupDetailed'
      title: UpdateASGroupResponse
    v202212DeleteASGroupResponse:
      type: object
      title: DeleteASGroupResponse
    v202212CreateASGroupResponse:
      type: object
      properties:
        asGroup:
          $ref: '#/components/schemas/v202212ASGroupDetailed'
      title: CreateASGroupResponse
    rpcStatus:
      type: object
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            $ref: '#/components/schemas/protobufAny'
    v202212ListASGroupsResponse:
      type: object
      properties:
        asGroups:
          type: array
          items:
            $ref: '#/components/schemas/v202212ASGroupDetailed'
          description: List of configurations of requested AS groups
        invalidCount:
          type: integer
          format: int64
          description: Number of invalid entries encountered while collecting data
      title: ListASGroupsResponse
    v202212ASGroupDetailed:
      type: object
      properties:
        id:
          type: string
          description: System generated unique identifier
          readOnly: true
        name:
          type: string
          description: User selected unique name
        asn:
          type: array
          items:
            $ref: '#/components/schemas/v202212AutonomousSystem'
          description: List of ASNs
        createdDate:
          type: string
          format: date-time
          description: Creation timestamp (UTC)
          readOnly: true
        updatedDate:
          type: string
          format: date-time
          description: Last modification timestamp (UTC)
          readOnly: true
      title: ASGroupDetailed
      required:
      - name
    v202212CreateASGroupRequest:
      type: object
      properties:
        asGroup:
          $ref: '#/components/schemas/v202212ASGroupConcise'
      title: CreateASGroupRequest
      required:
      - asGroup
    protobufAny:
      type: object
      properties:
        '@type':
          type: string
      additionalProperties: {}
    v202212ASGroupConcise:
      type: object
      properties:
        id:
          type: string
          description: System generated unique identifier
          readOnly: true
        name:
          type: string
          description: User selected unique name
        asn:
          type: array
          items:
            type: string
          description: List of ASNs
        createdDate:
          type: string
          format: date-time
          description: Creation timestamp (UTC)
          readOnly: true
        updatedDate:
          type: string
          format: date-time
          description: Last modification timestamp (UTC)
          readOnly: true
      title: ASGroupConcise
      required:
      - name
  securitySchemes:
    email:
      type: apiKey
      name: X-CH-Auth-Email
      in: header
    token:
      type: apiKey
      name: X-CH-Auth-API-Token
      in: header
externalDocs:
  description: General information about Kentik APIs
  url: https://kb.kentik.com/v0/Ab09.htm#Ab09-APIs_Overview