Vendasta marketplace_app API

The Marketplace App APIs allow you to perform actions against your applications, as well as certain operations against all marketplace apps.

Operations 1

GET /marketplace_app/{marketplace_app_id} Get Marketplace Application

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/vendasta-marketplace-app-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

vendasta-marketplace-app-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.0'
  title: Vendasta Marketplace API V1 Endpoints account Marketplace App API
  description: The Account APIs allow you to perform actions against a single account that your application has been added to.
servers:
- url: https://developers.vendasta.com/api/v1
  description: Production Server
- url: https://developers-demo.vendasta.com/api/v1
  description: Demo Server
security:
- BearerAuth: []
tags:
- name: marketplace_app
  description: The Marketplace App APIs allow you to perform actions against your applications, as well as certain operations against all marketplace apps.
paths:
  /marketplace_app/{marketplace_app_id}:
    get:
      tags:
      - marketplace_app
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  took:
                    type: integer
                    description: The total response time, in milliseconds.
                  data:
                    $ref: '#/components/schemas/marketplace_application'
        '401':
          description: Invalid Authentication
        '404':
          description: Marketplace App not found
      parameters:
      - required: true
        description: A unique identifier for each Marketplace Application. This is automatically generated upon application creation.
        in: path
        name: marketplace_app_id
        schema:
          type: string
      summary: Get Marketplace Application
      description: ''
components:
  schemas:
    marketplace_application:
      required:
      - entry_url
      - id
      - name
      - vendor
      properties:
        vendor:
          type: string
        description:
          type: string
        name:
          type: string
        entry_url:
          type: string
        id:
          type: string
        icon:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer