Knownwell streams API

The streams API from Knownwell — 1 operation(s) for streams.

Operations 1

GET /v1/streams List All Streams #

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/knownwell-streams-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

knownwell-streams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Knownwell api-keys Streams API
  description: API for accessing Knownwell client data and Knownwell scores
  version: v1
servers:
- url: https://api.knownwell.com/ci/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: streams
paths:
  /v1/streams:
    get:
      tags:
      - streams
      summary: List All Streams
      operationId: list_all_streams_v1_streams_get
      security:
      - APIKeyHeader: []
      parameters:
      - name: include_inactive
        in: query
        required: false
        schema:
          type: boolean
          default: false
          title: Include Inactive
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 500
          minimum: 1
          default: 100
          title: Limit
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
          default: 0
          title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllStreamsListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ScoreChange:
      properties:
        change:
          type: number
          title: Change
          description: Absolute change in score
        percentage:
          anyOf:
          - type: number
          - type: 'null'
          title: Percentage
          description: Percentage change
        previousScore:
          type: number
          title: Previousscore
          description: Score at start of period
      type: object
      required:
      - change
      - previousScore
      title: ScoreChange
      description: Score change over a time period.
    AllStreamsListResponse:
      properties:
        streams:
          items:
            $ref: '#/components/schemas/StreamResponse'
          type: array
          title: Streams
        total:
          type: integer
          title: Total
        customerId:
          type: string
          title: Customerid
      type: object
      required:
      - streams
      - total
      - customerId
      title: AllStreamsListResponse
      description: Response model for listing all streams across all clients.
    StreamResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        customerId:
          type: string
          title: Customerid
        parentClientId:
          anyOf:
          - type: string
          - type: 'null'
          title: Parentclientid
        parentClientName:
          anyOf:
          - type: string
          - type: 'null'
          title: Parentclientname
        score:
          type: number
          title: Score
        streamState:
          anyOf:
          - type: string
          - type: 'null'
          title: Streamstate
          description: 'Stream status: pending, active, or inactive'
        goals:
          anyOf:
          - type: string
          - type: 'null'
          title: Goals
          description: Stream goals/objectives
        hasInsufficientData:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Hasinsufficientdata
        historicalData:
          anyOf:
          - items:
              type: integer
            type: array
          - type: 'null'
          title: Historicaldata
        scoreChanges:
          anyOf:
          - $ref: '#/components/schemas/ScoreChanges'
          - type: 'null'
          description: Score changes over time
      type: object
      required:
      - id
      - name
      - customerId
      - score
      title: StreamResponse
      description: Response model for a stream (sub-project within a client)
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
    ScoreChanges:
      properties:
        7day:
          anyOf:
          - $ref: '#/components/schemas/ScoreChange'
          - type: 'null'
          description: 7-day change
        30day:
          anyOf:
          - $ref: '#/components/schemas/ScoreChange'
          - type: 'null'
          description: 30-day change
      type: object
      title: ScoreChanges
      description: Score changes over different time periods.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key