Instance Feed API

The Feed API from Instance — 2 operation(s) for feed.

Operations 2

GET /api/feed Feed Endpoint #
POST /api/feed/archive Feed Archive #

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/instance-feed-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

instance-feed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Robot rollout verifier Archive Feed API
  version: 0.1.0
servers:
- url: https://demo.instancelabs.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Feed
paths:
  /api/feed:
    get:
      summary: Feed Endpoint
      description: 'Live-feed poll: entries newer than `since` (a seq from a prior poll).

        since=0 replays the whole retained deque — that''s the refresh story.

        `session` narrows to one phone''s takes so several people can demo at once

        (/?live=<session> pairs a laptop with one phone; /?live=1 shows everyone).

        archived=0 (the wall) excludes archived takes; archived=1 is the archive

        view. `archived_seqs` rides along every poll so a viewer that already

        rendered a card learns it was archived elsewhere and can drop it.'
      operationId: feed_endpoint_api_feed_get
      parameters:
      - name: since
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Since
      - name: session
        in: query
        required: false
        schema:
          type: string
          default: ''
          title: Session
      - name: archived
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Archived
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Feed
  /api/feed/archive:
    post:
      summary: Feed Archive
      description: 'Curate the wall: flip one take''s archived flag (archive or restore).

        In-memory like the FEED itself — flags share the feed''s lifetime (pod

        restart or deque eviction clears both), which is all curation needs.'
      operationId: feed_archive_api_feed_archive_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedArchiveReq'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Feed
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FeedArchiveReq:
      properties:
        seq:
          type: integer
          title: Seq
        archived:
          type: boolean
          title: Archived
          default: true
      type: object
      required:
      - seq
      title: FeedArchiveReq