MENU navbar-image

Introduction

This documentation aims to provide all the information you need to work with our API.

<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>

Authenticating requests

To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

You can retrieve your token by visiting your dashboard and clicking Generate API token. The token should be prefixed with "Bearer ".

Endpoints

List all publishers

requires authentication

Get a list of all comic publishers.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/publishers" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/publishers"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


[
    {
        "id": 1,
        "name": "Marvel Comics",
        "founded": "1939-01-01",
        "website": "https://www.marvel.com"
    },
    {
        "id": 2,
        "name": "DC Comics",
        "founded": "1934-01-01",
        "website": "https://www.dc.com"
    }
]
 

Request      

GET api/publishers

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Get publisher details

requires authentication

Get detailed information about a specific publisher including their titles and imprints.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/publishers/marvel-comics" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/publishers/marvel-comics"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "id": 1,
    "name": "Marvel Comics",
    "founded": "1939-01-01",
    "website": "https://www.marvel.com",
    "titles": [
        {
            "id": 1,
            "name": "The Amazing Spider-Man"
        }
    ],
    "imprints": [
        {
            "id": 1,
            "name": "Marvel Knights"
        }
    ]
}
 

Request      

GET api/publishers/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the publisher. Example: marvel-comics

publisher   integer   

The ID of the publisher. Example: 1

List all titles

requires authentication

Get a paginated list of all comic titles with their related data. Requires authentication with 'read:public' permission.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/series?search=Spider-Man&publisher=1&sort=name&direction=asc&per_page=10" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/series"
);

const params = {
    "search": "Spider-Man",
    "publisher": "1",
    "sort": "name",
    "direction": "asc",
    "per_page": "10",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "name": "The Amazing Spider-Man",
            "publisher": {
                "id": 1,
                "name": "Marvel Comics"
            },
            "series": [
                {
                    "id": 1,
                    "name": "Volume 1",
                    "issues": [
                        {
                            "id": 1,
                            "number": "1",
                            "title": "Spider-Man",
                            "release_date": "1963-03-01"
                        }
                    ]
                }
            ],
            "characters": [
                {
                    "id": 1,
                    "name": "Peter Parker",
                    "alias": "Spider-Man"
                }
            ]
        }
    ],
    "meta": {
        "current_page": 1,
        "per_page": 10,
        "total": 100
    }
}
 

Example response (403, Unauthorized):


{
    "message": "Unauthorized"
}
 

Request      

GET api/series

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Search by title name. Example: Spider-Man

publisher   integer  optional  

Filter by publisher ID. Example: 1

sort   string  optional  

Sort field (name, created_at). Example: name

direction   string  optional  

Sort direction (asc, desc). Example: asc

per_page   integer  optional  

Items per page (max 50). Example: 10

Get a specific title

requires authentication

Get detailed information about a specific comic title including publisher, series, characters, and user-specific data. Requires authentication with 'read:public' permission.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/series/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/series/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "id": 1,
    "name": "The Amazing Spider-Man",
    "publisher": {
        "id": 1,
        "name": "Marvel Comics"
    },
    "series": [
        {
            "id": 1,
            "name": "Volume 1",
            "issues": [
                {
                    "id": 1,
                    "number": "1",
                    "title": "Spider-Man",
                    "release_date": "1963-03-01"
                }
            ]
        }
    ],
    "characters": [
        {
            "id": 1,
            "name": "Peter Parker",
            "alias": "Spider-Man"
        }
    ],
    "genres": [
        {
            "id": 1,
            "name": "Superhero"
        }
    ],
    "is_following": true,
    "in_pull_list": false,
    "in_collection": true,
    "is_read": true,
    "in_wishlist": false
}
 

Example response (404):


{
    "message": "Title not found"
}
 

Request      

GET api/series/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the title. Example: 1

Get issue details

requires authentication

Get detailed information about a specific issue including its series, creators, and characters.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/issues/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/issues/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "id": 1,
    "number": "1",
    "title": "Amazing Fantasy #15",
    "release_date": "1962-08-01",
    "series": {
        "id": 1,
        "name": "Amazing Fantasy",
        "title": {
            "id": 1,
            "name": "Spider-Man"
        }
    },
    "creators": [
        {
            "id": 1,
            "name": "Stan Lee",
            "role": "Writer"
        },
        {
            "id": 2,
            "name": "Steve Ditko",
            "role": "Artist"
        }
    ],
    "characters": [
        {
            "id": 1,
            "name": "Peter Parker",
            "alias": "Spider-Man"
        }
    ]
}
 

Request      

GET api/issues/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the issue. Example: 1

issue   integer   

The ID of the issue. Example: 1

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/creators/search" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/creators/search"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1742087121
access-control-allow-origin: *
 

[]
 

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/characters/search" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/characters/search"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1742087121
access-control-allow-origin: *
 

[]
 

List all creators

requires authentication

Get a paginated list of all comic creators with their roles and series.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/creators" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/creators"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "name": "Stan Lee",
            "role": {
                "id": 1,
                "name": "Writer"
            },
            "series": [
                {
                    "id": 1,
                    "name": "The Amazing Spider-Man"
                },
                {
                    "id": 2,
                    "name": "The Fantastic Four"
                }
            ]
        },
        {
            "id": 2,
            "name": "Jack Kirby",
            "role": {
                "id": 2,
                "name": "Artist"
            },
            "series": [
                {
                    "id": 2,
                    "name": "The Fantastic Four"
                }
            ]
        }
    ],
    "links": {
        "first": "http://localhost/api/creators?page=1",
        "last": "http://localhost/api/creators?page=5",
        "prev": null,
        "next": "http://localhost/api/creators?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 5,
        "path": "http://localhost/api/creators",
        "per_page": 20,
        "to": 20,
        "total": 100
    }
}
 

Request      

GET api/creators

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Get a specific creator

requires authentication

Get detailed information about a specific creator including their role, series, and issues.

Example request:
curl --request GET \
    --get "http://localhost:8000/api/creators/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/creators/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "id": 1,
    "name": "Stan Lee",
    "role": {
        "id": 1,
        "name": "Writer"
    },
    "series": [
        {
            "id": 1,
            "name": "The Amazing Spider-Man",
            "start_year": 1963
        }
    ],
    "issues": [
        {
            "id": 1,
            "title": "Amazing Fantasy #15",
            "release_date": "1962-08-01",
            "series": {
                "id": 1,
                "name": "The Amazing Spider-Man"
            }
        }
    ]
}
 

Example response (404):


{
    "message": "Creator not found"
}
 

Request      

GET api/creators/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the creator. Example: 1

GET api/characters

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/characters" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/characters"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1742087121
access-control-allow-origin: *
 

{
    "current_page": 1,
    "data": [
        {
            "id": 1,
            "name": "Spider-Man",
            "slug": "spider-man",
            "real_name": "Peter Parker",
            "description": "Peter Parker, bitten by a radioactive spider, gained incredible powers and learned that with great power comes great responsibility. As Spider-Man, he protects New York City while balancing his personal life and superhero duties.",
            "alter_ego": null,
            "birthday": null,
            "race": null,
            "birth_place": null,
            "occupation": "Photographer/Scientist",
            "height": null,
            "weight": null,
            "citizenship": "American",
            "education": null,
            "aliases": null,
            "profile_photo_path": "uploads/characters/1/profile-default.jpg",
            "user_id": null,
            "gender": "male",
            "role_id": 1,
            "created_at": "2025-03-16T01:04:08.000000Z",
            "updated_at": "2025-03-16T01:04:08.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "name": "Batman",
            "slug": "batman",
            "real_name": "Bruce Wayne",
            "description": "After witnessing his parents' murder as a child, Bruce Wayne trained his mind and body to peak human perfection. As Batman, he protects Gotham City using his intelligence, martial arts skills, and advanced technology.",
            "alter_ego": null,
            "birthday": null,
            "race": null,
            "birth_place": null,
            "occupation": "CEO/Vigilante",
            "height": null,
            "weight": null,
            "citizenship": "American",
            "education": null,
            "aliases": null,
            "profile_photo_path": null,
            "user_id": null,
            "gender": "male",
            "role_id": 1,
            "created_at": "2025-03-16T01:04:08.000000Z",
            "updated_at": "2025-03-16T01:04:08.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "name": "Wonder Woman",
            "slug": "wonder-woman",
            "real_name": "Diana Prince",
            "description": "Diana, Princess of the Amazons, trained warrior from Themyscira, uses her powers and abilities to fight evil and protect the innocent. As Wonder Woman, she serves as an ambassador of peace and champion of justice.",
            "alter_ego": null,
            "birthday": null,
            "race": null,
            "birth_place": null,
            "occupation": "Ambassador/Warrior",
            "height": null,
            "weight": null,
            "citizenship": "Themysciran",
            "education": null,
            "aliases": null,
            "profile_photo_path": null,
            "user_id": null,
            "gender": "female",
            "role_id": 1,
            "created_at": "2025-03-16T01:04:08.000000Z",
            "updated_at": "2025-03-16T01:04:08.000000Z",
            "deleted_at": null
        }
    ],
    "first_page_url": "http://localhost:8000/api/characters?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "http://localhost:8000/api/characters?page=1",
    "links": [
        {
            "url": null,
            "label": "&laquo; Previous",
            "active": false
        },
        {
            "url": "http://localhost:8000/api/characters?page=1",
            "label": "1",
            "active": true
        },
        {
            "url": null,
            "label": "Next &raquo;",
            "active": false
        }
    ],
    "next_page_url": null,
    "path": "http://localhost:8000/api/characters",
    "per_page": 20,
    "prev_page_url": null,
    "to": 3,
    "total": 3
}
 

Request      

GET api/characters

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/characters/{id}

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/characters/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/characters/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1742087121
access-control-allow-origin: *
 

{
    "titles": [],
    "issues": []
}
 

Request      

GET api/characters/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the character. Example: 1

GET api/users/{id}/profile

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/users/1/profile" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/users/1/profile"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1742087121
access-control-allow-origin: *
 

{
    "username": null,
    "joined_at": null
}
 

Request      

GET api/users/{id}/profile

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the user. Example: 1

GET api/users/{id}/collections

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/users/1/collections" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/users/1/collections"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1742087121
access-control-allow-origin: *
 

{
    "message": "This action is unauthorized."
}
 

Request      

GET api/users/{id}/collections

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the user. Example: 1

GET api/user

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/user" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/user"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 300
x-ratelimit-remaining: 299
x-ratelimit-reset: 1742090661
access-control-allow-origin: *
 

{
    "id": 1,
    "name": "Admin User",
    "username": "admin",
    "email": "[email protected]",
    "email_verified_at": "2025-03-16T01:04:08.000000Z",
    "two_factor_confirmed_at": null,
    "profile_photo_path": null,
    "created_at": "2025-03-16T01:04:08.000000Z",
    "updated_at": "2025-03-16T01:04:08.000000Z",
    "is_private": false,
    "show_contributions": true,
    "show_reading_list": true,
    "show_ratings": true,
    "show_wishlist": true,
    "location": "Comic Book Central",
    "bio": "Site administrator and comic enthusiast.",
    "show_first_appearances": false,
    "show_death_info": false,
    "show_review_spoilers": false,
    "email_notifications": true,
    "stripe_id": null,
    "pm_type": null,
    "pm_last_four": null,
    "trial_ends_at": null,
    "glow_color": "#FF5722",
    "banner_path": null,
    "is_wishlist_public": true,
    "public_wishlist_id": "cab28277-4b3f-4ae8-b60b-3e09aa531141",
    "profile_photo_url": "https://ui-avatars.com/api/?name=A+U&color=7F9CF5&background=EBF4FF",
    "is_pro": false,
    "subscriptions": []
}
 

Request      

GET api/user

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/user/collections

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/user/collections" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/user/collections"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 300
x-ratelimit-remaining: 299
x-ratelimit-reset: 1742090661
access-control-allow-origin: *
 

[]
 

Request      

GET api/user/collections

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/user/wishlists

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/user/wishlists" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/user/wishlists"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 300
x-ratelimit-remaining: 299
x-ratelimit-reset: 1742090661
access-control-allow-origin: *
 

[]
 

Request      

GET api/user/wishlists

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/user/pull-list

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/user/pull-list" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/user/pull-list"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 300
x-ratelimit-remaining: 299
x-ratelimit-reset: 1742090661
access-control-allow-origin: *
 

[]
 

Request      

GET api/user/pull-list

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/user/follows

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/user/follows" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/user/follows"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 300
x-ratelimit-remaining: 299
x-ratelimit-reset: 1742090661
access-control-allow-origin: *
 

{
    "message": "Server Error"
}
 

Request      

GET api/user/follows

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/user/read-status

requires authentication

Example request:
curl --request GET \
    --get "http://localhost:8000/api/user/read-status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/user/read-status"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 300
x-ratelimit-remaining: 299
x-ratelimit-reset: 1742090661
access-control-allow-origin: *
 

{}
 

Request      

GET api/user/read-status

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/collections

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/collections" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"b\",
    \"description\": \"Eius et animi quos velit et.\",
    \"is_public\": false
}"
const url = new URL(
    "http://localhost:8000/api/collections"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "b",
    "description": "Eius et animi quos velit et.",
    "is_public": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/collections

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Must not be greater than 255 characters. Example: b

description   string  optional  

Example: Eius et animi quos velit et.

is_public   boolean  optional  

Example: false

PUT api/collections/{id}

requires authentication

Example request:
curl --request PUT \
    "http://localhost:8000/api/collections/architecto" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"b\",
    \"description\": \"Eius et animi quos velit et.\",
    \"is_public\": false
}"
const url = new URL(
    "http://localhost:8000/api/collections/architecto"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "b",
    "description": "Eius et animi quos velit et.",
    "is_public": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/collections/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the collection. Example: architecto

Body Parameters

name   string  optional  

Must not be greater than 255 characters. Example: b

description   string  optional  

Example: Eius et animi quos velit et.

is_public   boolean  optional  

Example: false

DELETE api/collections/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost:8000/api/collections/architecto" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/collections/architecto"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/collections/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the collection. Example: architecto

POST api/collections/{id}/items

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/collections/architecto/items" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"issue_id\": \"architecto\"
}"
const url = new URL(
    "http://localhost:8000/api/collections/architecto/items"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "issue_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/collections/{id}/items

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the collection. Example: architecto

Body Parameters

issue_id   string   

The id of an existing record in the issues table. Example: architecto

DELETE api/collections/{collection_id}/items/{item_id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost:8000/api/collections/architecto/items/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/collections/architecto/items/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/collections/{collection_id}/items/{item_id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

collection_id   string   

The ID of the collection. Example: architecto

item_id   integer   

The ID of the item. Example: 1

POST api/wishlists

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/wishlists" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"b\",
    \"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
    "http://localhost:8000/api/wishlists"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "b",
    "description": "Eius et animi quos velit et."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/wishlists

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Must not be greater than 255 characters. Example: b

description   string  optional  

Example: Eius et animi quos velit et.

PUT api/wishlists/{id}

requires authentication

Example request:
curl --request PUT \
    "http://localhost:8000/api/wishlists/architecto" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"b\",
    \"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
    "http://localhost:8000/api/wishlists/architecto"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "b",
    "description": "Eius et animi quos velit et."
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/wishlists/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the wishlist. Example: architecto

Body Parameters

name   string  optional  

Must not be greater than 255 characters. Example: b

description   string  optional  

Example: Eius et animi quos velit et.

DELETE api/wishlists/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost:8000/api/wishlists/architecto" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/wishlists/architecto"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/wishlists/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the wishlist. Example: architecto

POST api/wishlists/{id}/items

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/wishlists/architecto/items" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"issue_id\": \"architecto\"
}"
const url = new URL(
    "http://localhost:8000/api/wishlists/architecto/items"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "issue_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/wishlists/{id}/items

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the wishlist. Example: architecto

Body Parameters

issue_id   string   

The id of an existing record in the issues table. Example: architecto

DELETE api/wishlists/{wishlist_id}/items/{item_id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost:8000/api/wishlists/architecto/items/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/wishlists/architecto/items/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/wishlists/{wishlist_id}/items/{item_id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

wishlist_id   string   

The ID of the wishlist. Example: architecto

item_id   integer   

The ID of the item. Example: 1

POST api/pull-list/items

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/pull-list/items" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"series_id\": \"architecto\"
}"
const url = new URL(
    "http://localhost:8000/api/pull-list/items"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "series_id": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/pull-list/items

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

series_id   string   

The id of an existing record in the series table. Example: architecto

DELETE api/pull-list/items/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost:8000/api/pull-list/items/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/pull-list/items/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/pull-list/items/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the item. Example: 1

Follow a title

requires authentication

Add a title to the authenticated user's followed titles list. Requires authentication with 'write:lists' permission.

Example request:
curl --request POST \
    "http://localhost:8000/api/titles/1/follow" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/titles/1/follow"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Title followed successfully",
    "is_following": true
}
 

Example response (403):


{
    "message": "Unauthorized"
}
 

Request      

POST api/titles/{id}/follow

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the title to follow. Example: 1

Unfollow a title

requires authentication

Remove a title from the authenticated user's followed titles list. Requires authentication with 'write:lists' permission.

Example request:
curl --request DELETE \
    "http://localhost:8000/api/titles/1/follow" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/titles/1/follow"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Title unfollowed successfully",
    "is_following": false
}
 

Example response (403):


{
    "message": "Unauthorized"
}
 

Request      

DELETE api/titles/{id}/follow

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the title to unfollow. Example: 1

POST api/issues/{id}/read-status

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/issues/1/read-status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/issues/1/read-status"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/issues/{id}/read-status

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the issue. Example: 1

DELETE api/issues/{id}/read-status

requires authentication

Example request:
curl --request DELETE \
    "http://localhost:8000/api/issues/1/read-status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/issues/1/read-status"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/issues/{id}/read-status

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the issue. Example: 1