Creed learning-plans API

The learning-plans API from Creed — 3 operation(s) for learning-plans.

Operations 4

GET /api/learning-plans/catalog List Catalog #
GET /api/learning-plans/instances List Instances #
POST /api/learning-plans/instances Create Instance #
POST /api/learning-plans/instances/{instance_id}/segments Mark Segment Complete #

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-learning-plans-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-learning-plans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Creed achievements Learning Plans 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: learning-plans
paths:
  /api/learning-plans/catalog:
    get:
      tags:
      - learning-plans
      summary: List Catalog
      operationId: list_catalog_api_learning_plans_catalog_get
      security:
      - HTTPBearer: []
      parameters:
      - name: lang
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Lang
      - name: x-user-id
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: X-User-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Plan'
                title: Response List Catalog Api Learning Plans Catalog Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/learning-plans/instances:
    get:
      tags:
      - learning-plans
      summary: List Instances
      operationId: list_instances_api_learning_plans_instances_get
      security:
      - HTTPBearer: []
      parameters:
      - name: x-user-id
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: X-User-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LearningPlanInstance'
                title: Response List Instances Api Learning Plans Instances Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - learning-plans
      summary: Create Instance
      operationId: create_instance_api_learning_plans_instances_post
      security:
      - HTTPBearer: []
      parameters:
      - 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/StartInstanceRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LearningPlanInstance'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/learning-plans/instances/{instance_id}/segments:
    post:
      tags:
      - learning-plans
      summary: Mark Segment Complete
      operationId: mark_segment_complete_api_learning_plans_instances__instance_id__segments_post
      security:
      - HTTPBearer: []
      parameters:
      - name: instance_id
        in: path
        required: true
        schema:
          type: string
          title: Instance 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/MarkSegmentRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LearningPlanInstance'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ScriptureSegment:
      properties:
        type:
          type: string
          const: scripture
          title: Type
        reference:
          $ref: '#/components/schemas/ScriptureReference'
      type: object
      required:
      - type
      - reference
      title: ScriptureSegment
    StartInstanceRequest:
      properties:
        plan_key:
          type: string
          title: Plan Key
      type: object
      required:
      - plan_key
      title: StartInstanceRequest
    Plan:
      properties:
        id:
          type: string
          title: Id
        key:
          type: string
          title: Key
        title:
          type: string
          title: Title
        author:
          type: string
          title: Author
        duration_days:
          type: integer
          title: Duration Days
        topic:
          type: string
          title: Topic
        description:
          type: string
          title: Description
        days:
          items:
            $ref: '#/components/schemas/PlanDay'
          type: array
          title: Days
      type: object
      required:
      - id
      - key
      - title
      - author
      - duration_days
      - topic
      - description
      - days
      title: Plan
    MarkSegmentRequest:
      properties:
        day_index:
          type: integer
          title: Day Index
        segment_type:
          type: string
          enum:
          - devotional
          - scripture
          title: Segment Type
      type: object
      required:
      - day_index
      - segment_type
      title: MarkSegmentRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LearningPlanInstance:
      properties:
        instance_id:
          type: string
          title: Instance Id
        user_id:
          type: string
          title: User Id
        plan_key:
          type: string
          title: Plan Key
        started_at:
          type: string
          title: Started At
        completed_segments:
          items:
            type: string
          type: array
          title: Completed Segments
      type: object
      required:
      - instance_id
      - user_id
      - plan_key
      - started_at
      title: LearningPlanInstance
    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
    PlanDay:
      properties:
        day_index:
          type: integer
          title: Day Index
        segments:
          items:
            anyOf:
            - $ref: '#/components/schemas/DevotionalSegment'
            - $ref: '#/components/schemas/ScriptureSegment'
          type: array
          title: Segments
      type: object
      required:
      - day_index
      - segments
      title: PlanDay
    ScriptureReference:
      properties:
        book:
          type: string
          title: Book
        chapter:
          type: integer
          title: Chapter
        verses:
          type: string
          title: Verses
      type: object
      required:
      - book
      - chapter
      - verses
      title: ScriptureReference
    ScriptureOpener:
      properties:
        reference:
          type: string
          title: Reference
        translation:
          type: string
          title: Translation
        text:
          type: string
          title: Text
      type: object
      required:
      - reference
      - translation
      - text
      title: ScriptureOpener
    DevotionalSegment:
      properties:
        type:
          type: string
          const: devotional
          title: Type
        title:
          type: string
          title: Title
        scripture_opener:
          $ref: '#/components/schemas/ScriptureOpener'
        body:
          type: string
          title: Body
      type: object
      required:
      - type
      - title
      - scripture_opener
      - body
      title: DevotionalSegment
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Supabase JWT token