Reactome discover API

Reactome Data: Search engines discovery schema

Operations 1

GET /data/discover/{identifier} The schema.org for an Event in Reactome knowledgebase #

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/reactome-discover-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

reactome-discover-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pathway Analysis Service database Discover API
  description: Provides an API for pathway over-representation and expression analysis as well as species comparison tool.
  termsOfService: /license
  contact:
    name: Reactome
    url: https://reactome.org
    email: help@reactome.org
  license:
    name: Creative Commons Attribution 3.0 Unsupported License
    url: https://creativecommons.org/licenses/by/3.0/legalcode
  version: '2.0'
servers:
- url: /AnalysisService
tags:
- name: discover
  description: 'Reactome Data: Search engines discovery schema'
paths:
  /data/discover/{identifier}:
    get:
      tags:
      - discover
      summary: The schema.org for an Event in Reactome knowledgebase
      description: For each event (reaction or pathway) this method generates a json file representing the dataset object as defined by schema.org (http). This is mainly used by search engines in order to index the data
      operationId: eventDiscovery
      parameters:
      - name: identifier
        in: path
        description: An event identifier
        required: true
        schema:
          type: string
        example: R-HSA-446203
      - name: view
        in: query
        description: Global parameter - Customise the view to be more concise and/or aggregate relationships
        required: false
        schema:
          type: string
          default: flatten
          enum:
          - flatten
          - nested
          - nested-aggregated
          example: null
      - name: includeRef
        in: query
        description: Global parameter - If true, replace element ref to dbId by standard JSOG object {@ref}
        required: false
        schema:
          type: boolean
          default: false
          example: null
      responses:
        '404':
          description: Identifier does not match with any event
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchemaDataSet'
        '406':
          description: Not acceptable according to the accept headers sent in the request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchemaDataSet'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchemaDataSet'
components:
  schemas:
    SchemaDataCatalog:
      type: object
      properties:
        '@type':
          type: string
        name:
          type: string
        url:
          type: string
    SchemaDataSet:
      type: object
      properties:
        '@context':
          type: string
        '@type':
          type: string
        citation:
          type: array
          items:
            type: string
        creator:
          type: array
          items:
            $ref: '#/components/schemas/SchemaCreator'
        description:
          type: string
        distribution:
          type: array
          items:
            $ref: '#/components/schemas/SchemaDataDownload'
        includedInDataCatalog:
          $ref: '#/components/schemas/SchemaDataCatalog'
        keywords:
          type: array
          items:
            type: string
        license:
          type: string
        name:
          type: string
        sameAs:
          type: array
          items:
            type: string
        url:
          type: string
        version:
          type: string
    SchemaDataDownload:
      type: object
      properties:
        '@type':
          type: string
        contentUrl:
          type: string
        encodingFormat:
          type: string
        fileFormat:
          type: string
    SchemaCreator:
      type: object