edX
https://chatgpt-plugin.2u.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_model": "edX",
"name_for_human": "edX",
"description_for_model": "A plugin for incorporating information, advice, and guidance on academic topics into ChatGPT conversations using the edX course library and course content.",
"description_for_human": "Find courses and content from leading universities to expand your knowledge at any level.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgpt-plugin.2u.com/.well-known/openapi.yaml",
"has_user_authentication": "false"
},
"logo_url": "https://www.edx.org/images/logos/edx_logo_chatgpt_plugin.svg",
"contact_email": "edx-chatgpt-plugin-support@2u.com",
"legal_info_url": "https://www.edx.org/edx-privacy-policy"
}
https://chatgpt-plugin.2u.com/.well-known/openapi.yaml
{
"openapi": "3.0.1",
"info": {
"title": "edX",
"description": "A plugin for incorporating information, advice, and guidance on academic topics into ChatGPT conversations using the edX course library and course content. The edX course catalog is extensive and covers a wide range of popular subject areas including career-oriented topics, online learning experiences, open courses, professional certificate programs, executive education, boot camps, degree programs, and graduate degree programs.",
"version": "2.1"
},
"servers": [
{
"url": "https://chatgpt-plugin.2u.com"
}
],
"paths": {
"/courses": {
"get": {
"operationId": "searchCourses",
"summary": "Returns a list of relevant short edX courses that teach specific skills.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to submit up to ten keywords for identifying the most relevant edX courses to the conversation context. Please include as many specific keywords as possible to identify the most pertinent edX courses for the conversation.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX course objects matching the current conversation context and containing detailed metadata including titles, descriptions, schools, skills, image URLs, video URLs, and course URLs.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Course"
}
}
}
}
}
}
}
},
"/programs": {
"get": {
"operationId": "searchPrograms",
"summary": "Returns a list of professional development programs that are offered by edX from top employers and universities that are specifically designed to build today's in-demand career skills.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to submit up to ten keywords for identifying the most relevant edX profession development programs to the conversation context. Please include as many specific keywords as possible to identify the most pertinent edX programs for the conversation.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX programs matching the current conversation context and containing detailed metadata including titles, descriptions, schools, skills, image URLs, video URLs, and program URLs.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Program"
}
}
}
}
}
}
}
},
"/degrees": {
"get": {
"operationId": "searchDegrees",
"summary": "Returns a list of online academic degree programs offered by edX from the best colleges, unversities, and educational institutions in the world.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to submit up to ten keywords for identifying the most relevant edX academic degrees to the conversation context. Please include as many specific keywords as possible to identify the most pertinent edX academic degrees for the conversation.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX degrees matching the current conversation context and containing detailed metadata including titles, descriptions, schools, skills, image URLs, video URLs, and degree URLs.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Degree"
}
}
}
}
}
}
}
},
"/bootcamps": {
"get": {
"operationId": "searchBootcamps",
"summary": "Returns a list of intensive, hands-on, project-based training professional boot camps offered by edX that are designed to quickly provide learners with the necessary skills for starting a new career or switching careers.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to submit up to ten keywords for identifying the most relevant edX boot camps to the conversation context. Please include as many specific keywords as possible to identify the most pertinent edX boot camps for the conversation.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX boot camps matching the current conversation context and containing detailed metadata including titles, descriptions, schools, skills, image URLs, video URLs, and boot camp URLs.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Bootcamp"
}
}
}
}
}
}
}
},
"/executive-education": {
"get": {
"operationId": "searchExecutiveEducation",
"summary": "Returns a list of Executive Education courses offered by edX and designed to assist data-focused business leaders in addressing organizational challenges and help professionals adapt or advance their careers.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to submit up to ten keywords for identifying the most relevant edX executive education courses to the conversation context. Please include as many specific keywords as possible to identify the most pertinent edX executive education courses for the conversation.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX executive education courses matching the current conversation context and containing detailed metadata including titles, descriptions, schools, skills, image URLs, video URLs, and course URLs.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ExecutiveEducation"
}
}
}
}
}
}
}
},
"/lessons": {
"get": {
"operationId": "searchLessons",
"summary": "Gets a list of educational lessons from relevant edX courses.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to search for educational lessons from edX courses with keywords.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX lesson objects containing detailed metadata including the title, URL, and lesson content.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Lesson"
}
}
}
}
}
}
}
},
"/videos": {
"get": {
"operationId": "searchVideos",
"summary": "Gets a list of educational videos from relevant edX courses.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to search for educational videos from relevant edX courses with keywords.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A JSON array of relevant edX course video objects containing detailed metadata including the title, URL, and transcript text.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Video"
}
}
}
}
}
}
}
},
"/quizzes": {
"get": {
"operationId": "searchQuizzes",
"summary": "Gets a list of quizzes from relevant edX courses that can be used to help users deepen their understanding of related topics.",
"parameters": [
{
"name": "query",
"in": "query",
"description": "Use this field to search for quizzes from inside edX courses using keywords.",
"required": true,
"schema": {
"type": "string",
"maxLength": 512
}
}
],
"responses": {
"200": {
"description": "A list of quizzes and activities pulled directly from edX courses",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Quiz"
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Course": {
"type": "object",
"properties": {
"course_id": {
"type": "string",
"description": "The alphanumeric human-readable unique identifier for the edX course."
},
"course_run_id": {
"type": "string",
"description": "The alphanumeric human-readable unique identifier for the current instance of the edX course."
},
"course_title": {
"type": "string",
"description": "The official published title of the edX course."
},
"course_publisher": {
"type": "string",
"description": "The college, university, institution, or corporation which published the edX course."
},
"short_description": {
"type": "string",
"description": "A brief overview of the edX course which summarizes the main topics and key concepts covered by the material."
},
"full_description": {
"type": "string",
"description": "A detailed description of the content, topics, skills, subjects, professors, assignments, projects, and learning experiences presented in the edX course."
},
"course_url": {
"type": "string",
"description": "The URL to the course detail page at edX.org, where potential students can learn more about this offering and enroll."
},
"introductory_video_url": {
"type": "string",
"description": "The URL of the introductory video for the edX course. The video is a brief synopsis which describes the experience for potential students, including subjects, topics, skills, and key concepts."
},
"skills_covered": {
"type": "array",
"items": {
"type": "string"
},
"description": "A taxonomical list of relevant job-oriented skills covered in the edX course, which learners can potentially acquire by enrolling."
}
}
},
"Program": {
"type": "object",
"properties": {
"program_id": {
"type": "string",
"description": "The alphanumeric human-readable unique identifier for the edX program."
},
"program_title": {
"type": "string",
"description": "The official published title of the edX program."
},
"program_publisher": {
"type": "string",
"description": "The college, university, institution, or corporation which published the edX program."
},
"short_description": {
"type": "string",
"description": "A brief overview of the edX program which summarizes the main topics and key concepts covered by the material."
},
"full_description": {
"type": "string",
"description": "A detailed description of the content, topics, skills, subjects, professors, assignments, projects, and learning experiences presented in the edX program."
},
"program_url": {
"type": "string",
"description": "The URL to the program detail page at edX.org, where potential students can learn more about this offering and enroll."
},
"introductory_video_url": {
"type": "string",
"description": "The URL of the introductory video for the edX program. The video is a brief synopsis which describes the experience for potential students, including subjects, topics, skills, and key concepts."
},
"skills_covered": {
"type": "array",
"items": {
"type": "string"
},
"description": "A taxonomical list of relevant job-oriented skills covered in the edX program, program, executive education, boot camp, or degree, which learners can potentially acquire by enrolling."
}
}
},
"ExecutiveEducation": {
"type": "object",
"properties": {
"executive_education_id": {
"type": "string",
"description": "The alphanumeric human-readable unique identifier for the edX Executive Education offering."
},
"executive_education_title": {
"type": "string",
"description": "The official published title of the edX Executive Education offering."
},
"executive_education_publisher": {
"type": "string",
"description": "The college, university, institution, or corporation which published the edX Executive Education offering."
},
"short_description": {
"type": "string",
"description": "A brief overview of the edX Executive Education offering which summarizes the main topics and key concepts covered by the material."
},
"full_description": {
"type": "string",
"description": "A detailed description of the content, topics, skills, subjects, professors, assignments, projects, and learning experiences presented in the edX Executive Education offering."
},
"executive_education_url": {
"type": "string",
"description": "The URL to the Executive Education offering detail page at edX.org, where potential students can learn more about this offering and enroll."
},
"introductory_video_url": {
"type": "string",
"description": "The URL of the introductory video for the edX Executive Education offering. The video is a brief synopsis which describes the experience for potential students, including subjects, topics, skills, and key concepts."
},
"skills_covered": {
"type": "array",
"items": {
"type": "string"
},
"description": "A taxonomical list of relevant job-oriented skills covered in the edX Executive Education offering, which learners can potentially acquire by enrolling."
}
}
},
"Bootcamp": {
"type": "object",
"properties": {
"bootcamp_id": {
"type": "string",
"description": "The alphanumeric human-readable unique identifier for the edX Boot Camp."
},
"bootcamp_title": {
"type": "string",
"description": "The official published title of the edX Boot Camp."
},
"bootcamp_publisher": {
"type": "string",
"description": "The college, university, institution, or corporation which published the edX Boot Camp."
},
"short_description": {
"type": "string",
"description": "A brief overview of the edX Boot Camp which summarizes the main topics and key concepts covered by the material."
},
"full_description": {
"type": "string",
"description": "A detailed description of the content, topics, skills, subjects, professors, assignments, projects, and learning experiences presented in the edX Boot Camp."
},
"bootcamp_url": {
"type": "string",
"description": "The URL to the Boot Camp detail page at edX.org, where potential students can learn more about this offering and enroll."
},
"skills_covered": {
"type": "array",
"items": {
"type": "string"
},
"description": "A taxonomical list of relevant job-oriented skills covered in the edX Boot Camp, which learners can potentially acquire by enrolling."
}
}
},
"Degree": {
"type": "object",
"properties": {
"degree_id": {
"type": "string",
"description": "The alphanumeric human-readable unique identifier for the edX Degree."
},
"degree_title": {
"type": "string",
"description": "The official published title of the edX Degree."
},
"degree_publisher": {
"type": "string",
"description": "The college, university, institution, or corporation which published the edX Degree."
},
"short_description": {
"type": "string",
"description": "A brief overview of the edX Degree which summarizes the main topics and key concepts covered by the material."
},
"full_description": {
"type": "string",
"description": "A detailed description of the content, topics, skills, subjects, professors, assignments, projects, and learning experiences presented in the edX Degree."
},
"degree_url": {
"type": "string",
"description": "The URL to the Degree detail page at edX.org, where potential students can learn more about this offering and enroll."
},
"skills_covered": {
"type": "array",
"items": {
"type": "string"
},
"description": "A taxonomical list of relevant job-oriented skills covered in the edX Degree, which learners can potentially acquire by enrolling."
}
}
},
"Video": {
"type": "object",
"properties": {
"course_key": {
"type": "string",
"description": "A unique identifier of the course in which the video is found."
},
"course_title": {
"type": "string",
"description": "The title of the course in which the video is found."
},
"course_publisher": {
"type": "string",
"description": "The university or corporation who created the course in which the video is found."
},
"video_url": {
"type": "string",
"format": "uri",
"description": "The URL to access the video file."
},
"video_title": {
"type": "string",
"description": "The title of the video for the edX course."
}
}
},
"Lesson": {
"type": "object",
"properties": {
"course_key": {
"type": "string",
"description": "The unique identifier of the course in which the lesson is found."
},
"course_title": {
"type": "string",
"description": "The title of the course in which the lesson is found."
},
"course_publisher": {
"type": "string",
"description": "The university or corporation who created the course in which the lesson is found."
},
"course_url": {
"type": "string",
"format": "uri",
"description": "The URL of a page that describes the course in which the lesson is found.and allows anyone to enroll in it for free"
},
"lesson_title": {
"type": "string",
"description": "The title of the lesson or activity"
},
"lesson_url": {
"type": "string",
"format": "uri",
"description": "The URL for the lesson's web page at edx.org"
},
"lesson_body": {
"type": "string",
"description": "The full text of the lesson or activity"
}
}
},
"Quiz": {
"type": "object",
"properties": {
"course_key": {
"type": "string",
"description": "The unique identifier of the course in which the quiz is found."
},
"course_title": {
"type": "string",
"description": "The title of the course in which the quiz is found."
},
"course_publisher": {
"type": "string",
"description": "The university or corporation who created the course in which the quiz is found."
},
"course_url": {
"type": "string",
"format": "uri",
"description": "The URL of a page that describes the course in which the quiz is found and allows anyone to enroll in it for free."
},
"quiz_title": {
"type": "string",
"description": "The title of the quiz"
},
"quiz_url": {
"type": "string",
"format": "uri",
"description": "The URL for the quiz web page at edX.org."
},
"quiz_description": {
"type": "string",
"description": "The full text of the quiz, which is typically a CAPA problem presented in Open Learning XML format."
}
}
}
}
}
}
Discover other plugins from the education category

Speak
Learn how to say anything in another language with Speak, your AI-powered language tutor.
0 Comments

AmazingTalker
Elevate your language learning at any level with personalized 1-on-1 online lessons from tutors across the world.
0 Comments
Preply
Plugin for finding the best language tutors and managing your lessons
0 Comments

IELTS Prep by Talkface
Use lastest IELTS Speaking exam questions to prep your IELTS speaking with Talkface
0 Comments

Coursera
Find recommendation for courses, specializations, and degrees on Coursera.
0 Comments

Outschool
Search for top-quality online classes and teachers on Outschool.
0 Comments

Open Lecture
Discover and access the right moments in open course lectures for targeted learning.
0 Comments

ABCmouse
Provides fun and educational learning activities for children 2-8 years old.
0 Comments
Upskillr
Custom curriculum, lesson plans, and upskilling support on any topic by Upskillr. Powered by Shorthills Tech.
0 Comments

QuickRecall
Create flashcards and review them with spaced repeition.
0 Comments

ProApp Learn Design
Level up your design skills quickly with a wide range of design courses, interactive workshops and AI-guided mentorship.
0 Comments

MixerBox Translate
Translate any language right away! Learn foreign languages easily by conversing with AI tutors!
0 Comments

Giga Tutor
Giga is your AI powered personalised tutor, it keeps the answers to your questions personalised.
0 Comments

Duoduo English
Learn and practice English for Duolingo English Test.
0 Comments

Japanese Strokes
Educational tool to help with learning Japanese writing strokes using animations.
0 Comments

Ukr-School-Books
Interact with a books database. List, get content, and find books.
0 Comments
Course Hero
Get course-specific study materials from Course Hero's library.
0 Comments

MightyOwl K-8
MightyOwl is a K-8 educational resource offering fun and engaging videos, quizzes and worksheets.
0 Comments

MetaMentor by AxonAI
MetaMentor personalizes your learning path in any topic and provides you with PDF,HTML and DOCX study guides.
0 Comments

Eduguide
A tool designed to respond to college admission-related inquiries.
0 Comments

Daily Learning
Unlock your full potential with a personalized education journey featuring custom-tailored lesson plans!
0 Comments

Kokoro
Learn with Kokoro!
0 Comments

BlendED
Create educational resources (question papers, bubble sheets, worksheets, etc.) instantly from your teaching material.
0 Comments

FlashcardsGenerator
Generate Anki flashcards and downloable Decks!
0 Comments