Teachable · Schema
TeachableCourse
A course on a Teachable school.
Online CoursesE-LearningEducationCourse ManagementEnrollmentsCoachingMembershipsTransaction
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique course identifier. |
| name | string | Course title. |
| heading | stringnull | The course subtitle, as set in the Information tab. |
| description | stringnull | Course description as set on the sales page. |
| is_published | boolean | Whether the course is published and visible to students. |
| image_url | stringnull | URL of the course image. |
| lecture_sections | array | Sections of the course containing lectures. |
| author_bio | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/teachable/main/json-schema/teachable-course.json",
"title": "TeachableCourse",
"description": "A course on a Teachable school.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique course identifier."
},
"name": {
"type": "string",
"description": "Course title."
},
"heading": {
"type": ["string", "null"],
"description": "The course subtitle, as set in the Information tab."
},
"description": {
"type": ["string", "null"],
"description": "Course description as set on the sales page."
},
"is_published": {
"type": "boolean",
"description": "Whether the course is published and visible to students."
},
"image_url": {
"type": ["string", "null"],
"format": "uri",
"description": "URL of the course image."
},
"lecture_sections": {
"type": "array",
"description": "Sections of the course containing lectures.",
"items": {
"$ref": "#/definitions/LectureSection"
}
},
"author_bio": {
"$ref": "#/definitions/AuthorBio"
}
},
"required": ["id", "name", "is_published"],
"definitions": {
"LectureSection": {
"type": "object",
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"is_published": { "type": "boolean" },
"position": { "type": "integer" },
"lectures": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "integer" },
"position": { "type": "integer" },
"is_published": { "type": "boolean" }
}
}
}
},
"required": ["id", "name", "is_published", "position"]
},
"AuthorBio": {
"type": "object",
"properties": {
"name": { "type": "string" },
"bio": { "type": ["string", "null"] },
"profile_image_url": { "type": ["string", "null"], "format": "uri" },
"user_id": { "type": ["integer", "null"] }
},
"required": ["name"]
}
}
}
Work with this as data
Every JSON Schema 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 schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/teachable-course"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.