Jekyll API is a plugin-free jekyll project that offers a JSON based api for posts, categories and authors
The API structure is based on the JSON API standard.
Returns all posts
/api/v1/posts
Returns a post by id.
The id of the post is the filename without file extension.
Example: /api/v1/posts/2018-04-17-lorem-ipsum.json
/api/v1/posts/{id}.json
Returns all authors
/api/v1/authors
Returns a author by id.
The id of the author is the filename without file extension.
Example: /api/v1/authors/john-doe.json
/api/v1/authors/{id}.json
Returns all categories
/api/v1/categories
Returns a category by id.
The id of the category is the filename without file extension.
Example: /api/v1/categories/music.json
/api/v1/categories/{id}.json
MIT
- Filters
- Pagination
- Tests