Galatea Bio Notification API

The notification API from Galatea Bio — 3 operation(s) for notification.

Operations 3

GET /notification #
PUT /notification/watch #
GET /notification/webhook-actions #

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/galatea-bio-notification-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

galatea-bio-notification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Octopod Notification API
  version: v1
servers:
- url: https://api.galatea.bio/api/v1
security:
- Bearer: []
tags:
- name: notification
paths:
  /notification:
    parameters: []
    get:
      operationId: notification_list
      description: Get user notifications
      parameters:
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: watched
        in: query
        description: Show watched/unwatched notifications
        required: false
        schema:
          type: boolean
      responses:
        '401':
          description: unauthorized
        '403':
          description: forbidden
        '200':
          description: Notifications list
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      required:
                      - message_type
                      - message
                      type: object
                      properties:
                        id:
                          title: Id
                          type: string
                          format: uuid
                          readOnly: true
                        user_id:
                          title: User id
                          type: string
                          readOnly: true
                        type:
                          title: Type
                          type: string
                          enum:
                          - WEBSOCKET
                          - SLACK
                          - ALL
                        message_type:
                          title: Message type
                          type: string
                          enum:
                          - plot_completed
                          - plot_failed
                          - upload_result_file_completed
                          - upload_result_file_failed
                          - order_execution_failed
                          - critical_processing_error
                          - monitoring_alert
                          - send_webhook_failed
                        message:
                          title: Message
                          type: string
                        created_at:
                          title: Created at
                          type: string
                          format: date-time
                          readOnly: true
                        watched:
                          title: Watched
                          type: boolean
      tags:
      - notification
  /notification/watch:
    parameters: []
    put:
      operationId: notification_watch_update
      description: Watch notification
      parameters:
      - name: notification_id
        in: query
        description: Id of notification
        required: false
        schema:
          type: string
      - name: watch_all
        in: query
        description: Watch all notifications
        required: false
        schema:
          type: boolean
      responses:
        '401':
          description: unauthorized
        '403':
          description: forbidden
        '404':
          description: not found
        '200':
          description: ok
      tags:
      - notification
  /notification/webhook-actions:
    parameters: []
    get:
      operationId: notification_webhook-actions_list
      description: Get possible webhook actions
      responses:
        '401':
          description: unauthorized
        '403':
          description: forbidden
        '200':
          description: Webhook actions list
          content:
            application/json:
              schema:
                type: array
                items:
                  required:
                  - name
                  - value
                  type: object
                  properties:
                    name:
                      title: Name
                      type: string
                      minLength: 1
                    value:
                      title: Value
                      type: string
                      minLength: 1
      tags:
      - notification
components:
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header