Creed live-streams API

The live-streams API from Creed — 4 operation(s) for live-streams.

Operations 5

GET /api/live-streams/active Get Active Stream #
POST /api/live-streams/start Start Stream #
POST /api/live-streams/stop Stop Stream #
POST /api/live-streams/{stream_id}/comments Submit Live Stream Comment #
GET /api/live-streams/{stream_id}/comments Get Live Stream Comments #

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/creed-live-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 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

creed-live-streams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Creed achievements Live Streams API
  description: Creed API - Christian AI Chatbot
  version: 1.0.0
servers:
- url: https://api.usecreed.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: live-streams
paths:
  /api/live-streams/active:
    get:
      tags:
      - live-streams
      summary: Get Active Stream
      operationId: get_active_stream_api_live_streams_active_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActiveStreamResponse'
  /api/live-streams/start:
    post:
      tags:
      - live-streams
      summary: Start Stream
      operationId: start_stream_api_live_streams_start_post
      parameters:
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
          title: X-Api-Key
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartStreamRequest'
              default: {}
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Start Stream Api Live Streams Start Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/live-streams/stop:
    post:
      tags:
      - live-streams
      summary: Stop Stream
      operationId: stop_stream_api_live_streams_stop_post
      parameters:
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
          title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Stop Stream Api Live Streams Stop Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/live-streams/{stream_id}/comments:
    post:
      tags:
      - live-streams
      summary: Submit Live Stream Comment
      description: Submit a comment on a live stream.
      operationId: submit_live_stream_comment_api_live_streams__stream_id__comments_post
      security:
      - HTTPBearer: []
      parameters:
      - name: stream_id
        in: path
        required: true
        schema:
          type: integer
          title: Stream Id
      - name: x-user-id
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: X-User-Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitLiveStreamCommentRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmitLiveStreamCommentResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - live-streams
      summary: Get Live Stream Comments
      description: Get comments for a live stream. Pass `since` for incremental fetching.
      operationId: get_live_stream_comments_api_live_streams__stream_id__comments_get
      parameters:
      - name: stream_id
        in: path
        required: true
        schema:
          type: integer
          title: Stream Id
      - name: since
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: ISO timestamp — return only comments after this time
          title: Since
        description: ISO timestamp — return only comments after this time
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LiveStreamComment'
                title: Response Get Live Stream Comments Api Live Streams  Stream Id  Comments Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LiveStreamComment:
      properties:
        id:
          type: integer
          title: Id
        stream_id:
          type: integer
          title: Stream Id
        user_id:
          type: string
          title: User Id
        comment_text:
          type: string
          title: Comment Text
        rejection_reason:
          anyOf:
          - type: string
          - type: 'null'
          title: Rejection Reason
        bot_approved:
          type: boolean
          title: Bot Approved
          default: true
        created_at:
          type: string
          format: date-time
          title: Created At
        user:
          anyOf:
          - $ref: '#/components/schemas/LiveStreamCommentUser'
          - type: 'null'
      type: object
      required:
      - id
      - stream_id
      - user_id
      - comment_text
      - created_at
      title: LiveStreamComment
      description: DB model for live_stream_comments table.
    SubmitLiveStreamCommentResponse:
      properties:
        success:
          type: boolean
          title: Success
      type: object
      required:
      - success
      title: SubmitLiveStreamCommentResponse
    ActiveStreamResponse:
      properties:
        stream:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Stream
      type: object
      title: ActiveStreamResponse
    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
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    LiveStreamCommentUser:
      properties:
        user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: User Id
        first_name:
          anyOf:
          - type: string
          - type: 'null'
          title: First Name
        last_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Last Name
        profile_picture:
          anyOf:
          - type: string
          - type: 'null'
          title: Profile Picture
      type: object
      title: LiveStreamCommentUser
      description: User info for live stream comments.
    StartStreamRequest:
      properties:
        streamer_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Streamer Name
      type: object
      title: StartStreamRequest
    SubmitLiveStreamCommentRequest:
      properties:
        comment_text:
          type: string
          title: Comment Text
      type: object
      required:
      - comment_text
      title: SubmitLiveStreamCommentRequest
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Supabase JWT token