Zipline Ai schema API

The schema API from Zipline Ai — 5 operation(s) for schema.

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/zipline-ai-schema-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zipline-ai-schema-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Zipline AI Fetcher fetch schema API
  version: v1
  description: HTTP surface of the Chronon fetcher service that powers Zipline AI online feature serving and schema inspection. These endpoints read from the online KV store and metadata uploaded during deploy, and are intended for online GroupBys and Joins. This document was generated by the API Evangelist enrichment pipeline from the provider's published documentation (https://zipline.ai/docs/setup/Fetcher_API); the provider does not publish an OpenAPI definition. Fetcher runs self-hosted within the customer's cloud, so the server host is deployment-specific.
  x-generated-by: api-evangelist-enrichment
  x-generated-method: generated
  x-source: https://zipline.ai/docs/setup/Fetcher_API
servers:
- url: http://localhost:9000
  description: Local sandbox default (docker-compose)
- url: https://{host}
  description: Self-hosted deployment host
  variables:
    host:
      default: zipline.example.com
tags:
- name: schema
paths:
  /v1/joins:
    get:
      tags:
      - schema
      operationId: listJoins
      summary: Lists Chronon joins marked online=True
      responses:
        '200':
          description: List of online joins
  /v1/join/{name}/schema:
    get:
      tags:
      - schema
      operationId: getJoinSchema
      summary: Returns the online fetch schema for a join
      description: Returns the Avro schemas used by online join fetching and logging.
      parameters:
      - $ref: '#/components/parameters/Name'
      responses:
        '200':
          description: Join fetch schema
        '404':
          description: Join not found
  /v1/groupby/{name}/schema:
    get:
      tags:
      - schema
      operationId: getGroupBySchema
      summary: Returns the online fetch schema for a GroupBy
      parameters:
      - $ref: '#/components/parameters/Name'
      responses:
        '200':
          description: GroupBy fetch schema
        '404':
          description: GroupBy not found
  /v1/groupby/{name}/status:
    get:
      tags:
      - schema
      operationId: getGroupByStatus
      summary: Returns online GroupBy upload status
      parameters:
      - $ref: '#/components/parameters/Name'
      responses:
        '200':
          description: Upload status
  /v1/stats/{tableName}:
    get:
      tags:
      - schema
      operationId: getTableStats
      summary: Returns enhanced statistics for a table when stats are available
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Table statistics
components:
  parameters:
    Name:
      name: name
      in: path
      required: true
      description: Chronon metadata name. URL-encode names that contain path separators.
      schema:
        type: string