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"
}
]
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/creators/search
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: *
[]
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/characters/search
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: *
[]
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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": "« Previous",
"active": false
},
{
"url": "http://localhost:8000/api/characters?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"next_page_url": null,
"path": "http://localhost:8000/api/characters",
"per_page": 20,
"prev_page_url": null,
"to": 3,
"total": 3
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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": []
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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": []
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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: *
[]
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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: *
[]
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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: *
[]
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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: *
{}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
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());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.