Eclipse Foundation Markets API

The Markets API from Eclipse Foundation — 1 operation(s) for markets.

Operations 1

GET /api/p Retreive Markets with categories #

Documentation

📖
Documentation
https://webdev.eclipse.org/docs/api/marketplace-rest-api
📖
Authentication
https://raw.githubusercontent.com/api-evangelist/eclipse/refs/heads/main/authentication/eclipse-authentication.yml
📖
Documentation
https://webdev.eclipse.org/docs/api/
📖
APIReference
https://webdev.eclipse.org/docs/api/additional-api-docs
📖
Documentation
https://www.eclipse.org/projects/handbook/
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipse-projects-api
📖
Documentation
https://github.com/eclipse/openvsx/wiki/Publishing-Extensions
📖
APIReference
https://open-vsx.org/swagger-ui/index.html
📖
APIReference
https://webdev.eclipse.org/docs/api/newsroom-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-downloads-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-downloads-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-geoip-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-geoip-api
📖
APIReference
https://webdev.eclipse.org/docs/api/git-eca-rest-api
📖
Documentation
https://webdev.eclipse.org/docs/api/git-eca-rest-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-info-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-info-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-committer-paperwork-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-committer-paperwork-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-hellosign-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-hellosign-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-membership-portal-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-membership-portal-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipsefdn-membership-application-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipsefdn-membership-application-api
📖
APIReference
https://webdev.eclipse.org/docs/api/eclipse-openvsx-api
📖
Documentation
https://webdev.eclipse.org/docs/api/eclipse-openvsx-api

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/eclipse-markets-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

eclipse-markets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eclipse Marketplace REST Markets API
  version: '1.0'
  description: REST API for interacting with marketplace listings, catalogs, and versions.
servers:
- url: https://marketplace.eclipse.org
  description: The production API server
tags:
- name: Markets
paths:
  /api/p:
    get:
      parameters:
      - $ref: '#/components/parameters/client'
      tags:
      - Markets
      summary: Retreive Markets with categories
      description: This will return a listing of Markets and Categories, it includes URLs for each category, as well number of listings in each category.
      operationId: getMarketsWithCategories
      responses:
        '200':
          description: Success
          content:
            application/xml:
              example: "<marketplace>\n  <market name=\"Tools\" id=\"31\" url=\"http://marketplace.eclipse.org/category/markets/tools\">\n    <category id=\"1964\" count=\"158\" url=\"http://marketplace.eclipse.org/taxonomy/term/1964%2C31\" name=\"Application Development Frameworks\" />\n  </market>\n  <market name=\"Long Term Support\" id=\"3429\" url=\"http://marketplace.eclipse.org/category/markets/long-term-support\" />\n</marketplace>\n"
              schema:
                $ref: '#/components/schemas/Markets'
components:
  schemas:
    Market:
      allOf:
      - $ref: '#/components/schemas/BaseNode'
      - type: object
        xml:
          name: market
        properties:
          category:
            $ref: '#/components/schemas/BaseCategory'
    BaseCategory:
      allOf:
      - $ref: '#/components/schemas/BaseNode'
      - type: object
        xml:
          name: category
        properties:
          count:
            type: integer
            xml:
              attribute: true
    Markets:
      type: array
      xml:
        name: marketplace
        wrapped: true
      items:
        $ref: '#/components/schemas/Market'
    BaseNode:
      type: object
      properties:
        id:
          type: integer
          description: Unique identifier
          xml:
            attribute: true
        url:
          type: string
          description: URL
          xml:
            attribute: true
        name:
          type: string
          description: Title
          xml:
            attribute: true
  parameters:
    client:
      name: client
      in: query
      description: This variable is usually sent from MPC to alter the default list. It's available for the Most Popular Listings, Top Favorited Listings, Recently Updated Listings and Featured Listings. Only installable listings owned by an Eclipse member company will be returned.
      schema:
        type: string
        enum:
        - org.eclipse.epp.mpc.core
        - org.eclipse.smarthome
        - org.eclipse.kura