TIP

Read Schema first if you haven't read it.

Endpoints

GET /api/post/tag

Response type:

type TagsResponse = (Tag & {
    count: number;
})[];

GET /api/post/tag/[name]

Route parameters:

NameDescription
nameTag name to search for

Query parameters:

NameDescription
limitMaximum count of posts to return
offsetCount of posts to skip

Response type:

type TaggedPostResponse = {
    count: number;
    data: Post[];
};
Last Updated:
Contributors: MoveToEx