🎬
Courses
Fetching the course list (stored as blog posts).
GRAPHQL
Course list
PublicGRAPHQLhttps://khanhhungacademy-api.monamedia.net/graphql/
Returns a paginated, sortable list of courses (blogPosts query).
Base URL: https://khanhhungacademy-api.monamedia.net (NEXT_PUBLIC_API_KHA)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| pageSize | Int | No | Defaults to 21 |
| currentPage | Int | No | Defaults to 1 |
| sort | String | No | ASC | DESC (defaults to DESC) |
| sortFiled | String | No | Defaults to publish_time |
Example response
Response
{
"data": {
"blogPosts": {
"items": [
{ "post_id": 1, "title": "Khoá học A", "course_link": "...", "featured_image": "..." }
],
"total_count": 50,
"total_pages": 3
}
}
}