Evaluation

Platform and SDK capabilities for assessing model performance across data splits, running error and slice analysis, and building expert-curated benchmarks. Largely delivered in-platform and through the SDK against a customer's Snorkel Flow instance rather than a public REST endpoint.

OpenAPI Specification

snorkel-ai-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Snorkel Flow Platform API
  description: >-
    Snorkel Flow is an enterprise AI data-development platform driven
    programmatically through the snorkelflow Python SDK. The SDK's
    snorkelflow.client module is documented as "Interfaces to interact with the
    Snorkel Flow REST API", so a REST surface exists - but it is exposed by each
    customer's own Snorkel Flow deployment at a per-instance hostname
    (https://<your-snorkel-hostname>), authenticated with a per-user API key via
    SnorkelFlowContext. Snorkel does not publish a single hosted, public base URL
    or an endpoint-level REST reference; the developer contract is the Python SDK
    (datasets, applications, operators, labeling functions, model training, and
    evaluation), not individually documented HTTP paths. No public REST endpoints
    are enumerated here to avoid fabrication; consult the SDK API reference for the
    supported programmatic surface. The free, open-source snorkel library is a
    local Python dependency and is not a network API.
  termsOfService: https://snorkel.ai/terms-of-service/
  contact:
    name: Snorkel AI
    url: https://snorkel.ai/contact/
  version: '25.3'
servers:
  - url: https://{snorkelHostname}
    description: >-
      Per-instance Snorkel Flow deployment endpoint. Replace {snorkelHostname}
      with your organization's Snorkel Flow host. There is no shared public host.
    variables:
      snorkelHostname:
        default: your-snorkel-hostname
        description: The hostname of your Snorkel Flow instance.
paths: {}
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Snorkel Flow API key supplied to the SDK via SnorkelFlowContext. Keys are
        per-user and may be rotated by the platform on re-authentication.
security:
  - apiKey: []