Business Software and Services Reviews | G2 Chat Gpt Plugin API

The Chat Gpt Plugin API from Business Software and Services Reviews | G2 — 2 operation(s) for chat gpt plugin.

Operations 2

GET /chat_gpt_plugin/products Search for a specific product #
GET /chat_gpt_plugin/reports Search for best products by type, based on G2 Report data #

Documentation

Specifications

Other Resources

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/business-software-and-services-reviews-g2-chat-gpt-plugin-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

business-software-and-services-reviews-g2-chat-gpt-plugin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: G2.com Chat Gpt Plugin API
  description: Find the best software & services for your business needs
  version: v1
servers:
- url: https://www.g2.com/
tags:
- name: Chat Gpt Plugin
paths:
  /chat_gpt_plugin/products:
    get:
      operationId: findProductByName
      summary: Search for a specific product
      parameters:
      - in: query
        name: name
        schema:
          type: string
        required: true
        description: String match against specific product's name or description
      - in: query
        name: keywords
        schema:
          type: string
        required: false
        description: Additional keywords to match against product name and description.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/product_list'
      tags:
      - Chat Gpt Plugin
  /chat_gpt_plugin/reports:
    get:
      operationId: findProductByType
      summary: Search for best products by type, based on G2 Report data
      parameters:
      - in: query
        name: software_type
        schema:
          type: string
        required: true
        description: String match against type or category of product
      - in: query
        name: keywords
        schema:
          type: string
        required: false
        description: Additional keywords to match against features, problems solved, or category info.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/report_list'
      tags:
      - Chat Gpt Plugin