Galatea Bio Statistics API

The statistics API from Galatea Bio — 2 operation(s) for statistics.

Operations 2

GET /statistics #
GET /statistics/orders_plot #

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-statistics-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-statistics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Octopod Statistics API
  version: v1
servers:
- url: https://api.galatea.bio/api/v1
security:
- Bearer: []
tags:
- name: statistics
paths:
  /statistics:
    parameters: []
    get:
      operationId: statistics_list
      description: Get statistics
      parameters:
      - name: org_names
        in: query
        description: Search by organizations names
        required: false
        schema:
          type: array
          items:
            type: string
      - name: min_date
        in: query
        description: Min date
        required: false
        example: '2000-01-01'
        schema:
          type: string
          format: date
          pattern: YYYY-MM-DD
      - name: max_date
        in: query
        description: Max date
        required: false
        example: '2000-01-01'
        schema:
          type: string
          format: date
          pattern: YYYY-MM-DD
      responses:
        '401':
          description: unauthorized
        '403':
          description: forbidden
        '200':
          description: Statistics data
          content:
            application/json:
              schema:
                required:
                - source_files_statistics
                - result_files_statistics
                - orders_statistics
                - credit_statistics
                - resource_statistics
                type: object
                properties:
                  source_files_statistics:
                    required:
                    - amount
                    - file_size_bytes
                    - valid
                    - not_valid
                    - check_in_process
                    - single_sample
                    - multi_sample
                    - gnt
                    - wgs
                    - web_upload
                    - sftp_upload
                    type: object
                    properties:
                      amount:
                        title: Amount
                        type: integer
                      file_size_bytes:
                        title: File size bytes
                        type: integer
                      valid:
                        title: Valid
                        type: integer
                      not_valid:
                        title: Not valid
                        type: integer
                      check_in_process:
                        title: Check in process
                        type: integer
                      single_sample:
                        title: Single sample
                        type: integer
                      multi_sample:
                        title: Multi sample
                        type: integer
                      gnt:
                        title: Gnt
                        type: integer
                      wgs:
                        title: Wgs
                        type: integer
                      web_upload:
                        title: Web upload
                        type: integer
                      sftp_upload:
                        title: Sftp upload
                        type: integer
                  result_files_statistics:
                    required:
                    - amount
                    - file_size_bytes
                    type: object
                    properties:
                      amount:
                        title: Amount
                        type: integer
                      file_size_bytes:
                        title: File size bytes
                        type: integer
                  orders_statistics:
                    type: array
                    items:
                      required:
                      - amount
                      - completed
                      - failed
                      - in_progress
                      - reports_failed
                      - gnt
                      - wgs
                      type: object
                      properties:
                        amount:
                          title: Amount
                          type: integer
                        completed:
                          title: Completed
                          type: integer
                        failed:
                          title: Failed
                          type: integer
                        in_progress:
                          title: In progress
                          type: integer
                        reports_failed:
                          title: Reports failed
                          type: integer
                        gnt:
                          title: Gnt
                          type: integer
                        wgs:
                          title: Wgs
                          type: integer
                        model_api_name:
                          title: Model api name
                          type:
                          - string
                          - 'null'
                          minLength: 1
                  credit_statistics:
                    required:
                    - orders_amount
                    - pdf_reports_amount
                    - replenishment_amount
                    type: object
                    properties:
                      orders_amount:
                        title: Orders amount
                        type: integer
                      pdf_reports_amount:
                        title: Pdf reports amount
                        type: integer
                      replenishment_amount:
                        title: Replenishment amount
                        type: integer
                  resource_statistics:
                    required:
                    - current_amount_ce_aws
                    - current_amount_ce_app
                    - current_queues
                    - org_queues
                    type: object
                    properties:
                      current_amount_ce_aws:
                        title: Current amount ce aws
                        type: integer
                      current_amount_ce_app:
                        title: Current amount ce app
                        type: integer
                      current_queues:
                        type: array
                        items:
                          required:
                          - queue_name
                          - queue_type
                          - owner
                          type: object
                          properties:
                            queue_name:
                              title: Queue name
                              type: string
                              minLength: 1
                            queue_type:
                              title: Queue type
                              type: string
                              minLength: 1
                            owner:
                              title: Owner
                              type: string
                              minLength: 1
                      org_queues:
                        type: array
                        items:
                          required:
                          - org_name
                          - orders_total
                          - queues
                          type: object
                          properties:
                            org_name:
                              title: Org name
                              type: string
                              minLength: 1
                            orders_total:
                              title: Orders total
                              type: integer
                            queues:
                              type: array
                              items:
                                required:
                                - orders_total
                                - queue_name
                                type: object
                                properties:
                                  orders_total:
                                    title: Orders total
                                    type: integer
                                  queue_name:
                                    title: Queue name
                                    type: string
                                    minLength: 1
      tags:
      - statistics
  /statistics/orders_plot:
    parameters: []
    get:
      operationId: statistics_orders_plot_list
      description: Get orders statistic plot
      parameters:
      - name: org_names
        in: query
        description: Search by organizations names
        required: false
        schema:
          type: array
          items:
            type: string
      - name: plot_date_range
        in: query
        description: Plot date range
        required: false
        schema:
          type: string
          enum:
          - 1
          - 2
      - name: min_date
        in: query
        description: Min date
        required: false
        example: '2000-01-01'
        schema:
          type: string
          format: date
          pattern: YYYY-MM-DD
      - name: max_date
        in: query
        description: Max date
        required: false
        example: '2000-01-01'
        schema:
          type: string
          format: date
          pattern: YYYY-MM-DD
      responses:
        '401':
          description: unauthorized
        '403':
          description: forbidden
        '200':
          description: Plot data
          content:
            application/json:
              schema:
                required:
                - items
                type: object
                properties:
                  items:
                    type: array
                    items:
                      required:
                      - x
                      - y
                      - series
                      type: object
                      properties:
                        x:
                          title: X
                          type: string
                          format: date-time
                        y:
                          title: Y
                          type: integer
                        series:
                          title: Series
                          type: string
                          minLength: 1
      tags:
      - statistics
components:
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header