Eclipse Project Adopters API

REST API listing the organisations that have declared adoption of an Eclipse Foundation project, per project or across the whole estate.

Operations 2

GET /projects Project adopters list
GET /projects/{projectId} Adopters of single project

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/project-adopters-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-project-adopters-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  version: 1.0.0
  title: PROJECT ADOPTERS API
  description: Access information on Eclipse Foundation project adopters
  license:
    name: Eclipse Public License - 2.0
    url: https://www.eclipse.org/legal/epl-2.0/
servers:
- url: https://api.eclipse.org/adopters
  description: Production endpoint for foundation project adopters data
paths:
  /projects:
    parameters:
    - name: working_group
      in: query
      description: The name of the working group that would contain project adopters
      required: false
      schema:
        type: string
    get:
      tags:
      - Project Adopters
      summary: Project adopters list
      description: Returns a list of all project adopters
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdoptedProjects'
        '500':
          description: Error while retrieving data.
  /projects/{projectId}:
    parameters:
    - name: projectId
      in: path
      description: The id of the project to retreive
      required: true
      schema:
        type: string
    get:
      summary: Adopters of single project
      description: All project adopters under a specific project
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdoptedProject'
        '500':
          description: Error while retrieving data.
components:
  schemas:
    AdoptedProjects:
      type: array
      items:
        $ref: '#/components/schemas/AdoptedProject'
    AdoptedProject:
      type: object
      additionalProperties: false
      required:
      - adopters
      - logo
      - name
      - project_id
      - url
      properties:
        adopters:
          type: array
          items:
            $ref: '#/components/schemas/Adopter'
        logo:
          type: string
          description: The URL containing the project logo.
        name:
          type: string
          description: The name of the project.
        project_id:
          type: string
          description: The id of the project.
        url:
          type: string
          description: The project URL under projects.eclipse.org.
    Adopters:
      type: array
      items:
        $ref: '#/components/schemas/Adopter'
    Adopter:
      type: object
      additionalProperties: false
      required:
      - projects
      - homepage_url
      - logo
      - logo_white
      - name
      properties:
        projects:
          type: array
          description: List of projects by their ID that the company adopts within a product
          items:
            type: string
        homepage_url:
          type: string
          description: The URL containing the adopter's homepage.
        logo:
          type: string
          description: The adopter's color logo.
        logo_white:
          type: string
          description: The adopter's white logo.
        name:
          type: string
          description: The adopter's company name.