Google Cloud Interconnect Interconnects API

Manage interconnect connections

Operations 4

GET /projects/{project}/global/interconnects Google Cloud Interconnect List interconnects #
POST /projects/{project}/global/interconnects Google Cloud Interconnect Create an interconnect #
GET /projects/{project}/global/interconnects/{interconnect} Google Cloud Interconnect Get an interconnect #
DELETE /projects/{project}/global/interconnects/{interconnect} Google Cloud Interconnect Delete an interconnect #

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/google-cloud-interconnect-interconnects-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

google-cloud-interconnect-interconnects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Cloud Interconnect InterconnectAttachments Interconnects API
  description: Provides programmatic access to manage interconnect connections, attachments, and locations for hybrid cloud connectivity between on-premises networks and Google Cloud.
  version: v1
  contact:
    name: Google Cloud
    url: https://cloud.google.com/network-connectivity/docs/interconnect
servers:
- url: https://compute.googleapis.com/compute/v1
  description: Google Cloud Interconnect production endpoint
security:
- oauth2:
  - https://www.googleapis.com/auth/compute
tags:
- name: Interconnects
  description: Manage interconnect connections
paths:
  /projects/{project}/global/interconnects:
    get:
      operationId: listInterconnects
      summary: Google Cloud Interconnect List interconnects
      description: Retrieves the list of interconnects available to the specified project.
      tags:
      - Interconnects
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterconnectList'
    post:
      operationId: createInterconnect
      summary: Google Cloud Interconnect Create an interconnect
      description: Creates an interconnect in the specified project.
      tags:
      - Interconnects
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Interconnect'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
  /projects/{project}/global/interconnects/{interconnect}:
    get:
      operationId: getInterconnect
      summary: Google Cloud Interconnect Get an interconnect
      description: Returns the specified interconnect resource.
      tags:
      - Interconnects
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: interconnect
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Interconnect'
    delete:
      operationId: deleteInterconnect
      summary: Google Cloud Interconnect Delete an interconnect
      description: Deletes the specified interconnect.
      tags:
      - Interconnects
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: interconnect
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
components:
  schemas:
    Operation:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: string
        targetLink:
          type: string
    InterconnectList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Interconnect'
    Interconnect:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the resource
        name:
          type: string
          description: Name of the interconnect
        description:
          type: string
          description: An optional description of the interconnect
        location:
          type: string
          description: URL of the interconnect location
        linkType:
          type: string
          enum:
          - LINK_TYPE_ETHERNET_10G_LR
          - LINK_TYPE_ETHERNET_100G_LR
          description: Type of the link for this interconnect
        requestedLinkCount:
          type: integer
          description: Target number of physical links in the interconnect
        interconnectType:
          type: string
          enum:
          - IT_PRIVATE
          - DEDICATED
          - PARTNER
          description: Type of interconnect
        state:
          type: string
          enum:
          - ACTIVE
          - UNPROVISIONED
          description: Current status of the interconnect
        operationalStatus:
          type: string
          enum:
          - OS_ACTIVE
          - OS_UNPROVISIONED
        selfLink:
          type: string
          description: Server-defined URL for the resource
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/compute: Manage your Google Compute Engine resources
            https://www.googleapis.com/auth/cloud-platform: Full access to Google Cloud Platform resources