Get all wallpaper data for a single wallpaper.
GET/wallpaper/:wallpaper_id
Get all wallpaper data for a single wallpaper.
Request
Path Parameters
The wallpaper ID
Query Parameters
default: false
Default value: true
Responses
- 200
- 400
- 401
Successful response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
-
children
: Array of wallpaper IDs will only appear whenis_parent
is true -
is_parent
: Designates if this is the parent item of pickle jar wallpapers -
parent_id
: The ID of the parent item. This will only appear ifis_parent
is false -
siblings:
: Array of wallpaper IDs will only appear whenis_parent
is false Array [
]
Array [
]
Array [
]
Array [
]
Array [
]
db_core
object
The structure of all possible data include in the response. Not everything documented for db_core
will always appear.
endpoints
object
Endpoints to be used with all paths.*
values
Endpoint prefix for all paths.api
values
Endpoint prefix for all paths.image
values
Endpoint prefix for all paths.thumb
values
Endpoint prefix for all paths.web
values
request
object
The request data
Contains the data provided within the body (POST) request.
Contains the variables provided within the path/route.
Contains the data provided within the query (GET) request.
This value will appear in a pagination query to represent the maximum value for page
wallpaper
object
Object ID
Identifies if all resolutions of the wallpaper are available for users who have a membership, free or paid.
comments
object[]
Array of comment objects
Object ID
User ID of the comment author
Display name of comment author
Comment content
Possible values: >= 1
and <= 5
Wallpaper content / description.
Identifies if certain designated free resolutions of the wallpaper are available for users who have a membership, free or paid.
Name/title of the wallpaper
paths
object
Path to use with the db_core.endpoints.api
Path to use with the db_core.endpoints.thumb
Path to use with the db_core.endpoints.web
pickle_jar
object
Pickle jar information.
Average user rating for the wallpaper, between 1 and 5.
resolutions
object
dual
object[]
mobile
object[]
single
object[]
thumbnail
object[]
triple
object[]
The unique alphanumeric identifier for a wallpaper
Array of tag strings
{
"db_core": {
"timestamp": 0,
"endpoints": {
"api": "https://api.digitalblasphemy.com/v2/core",
"image": "https://isekai.digitalblasphemy.com",
"thumb": "https://cdn.digitalblasphemy.com",
"web": "https://digitalblasphemy.com"
},
"request": {
"body": {},
"params": {},
"query": {}
},
"total_pages": 0
},
"wallpaper": {
"id": 0,
"all_free": true,
"comments": [
{
"id": 0,
"author_id": 0,
"author_display": "string",
"content": "string",
"rating": 0,
"timestamp": 0
}
],
"content": "string",
"free": true,
"name": "Fluorescence",
"paths": {
"api": "/wallpaper/0",
"thumb": "/thumbnail/640x480/fluorescence_thumbnail_640x480.jpg",
"web": "string"
},
"pickle_jar": {
"children": [
0
],
"is_parent": true,
"parent_id": 0,
"siblings": [
0
]
},
"rating": 0,
"resolutions": {
"dual": [
{
"label": "string",
"width": 0,
"height": 0,
"image": "string"
}
],
"mobile": [
{
"label": "string",
"width": 0,
"height": 0,
"image": "string"
}
],
"single": [
{
"label": "string",
"width": 0,
"height": 0,
"image": "string"
}
],
"thumbnail": [
{
"label": "string",
"width": 0,
"height": 0,
"image": "string"
}
],
"triple": [
{
"label": "string",
"width": 0,
"height": 0,
"image": "string"
}
]
},
"sku": "fluorescence",
"tags": [
"string"
],
"timestamp": 0
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
Array of error message strings
{
"code": 0,
"description": "string",
"errors": [
"string"
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
{
"code": 0,
"description": "string"
}