Tags

All actions for the "/tags" endpoint.

Get a list of tags

GET https://api.lolwallpapers.net/beta/tags

Query Parameters

Name
Type
Description

search

string

Search through all tags names (not strict)

exclude

array

An array of tags names to exclude from the result.

sort

string

Sort by: - name - wallpapers - views - downloads - created_at (default) - updated_at

order

string

Order by: - asc - desc (default)

limit

string

The amount of tags to display per page. Default: 20 Minimum: 1 Maximum: 50

page

string

The page to display. Default: 1 Minimum: 1

{
    "status": "success",
    "data": [
        {
            "name": "triple screen",
            "parent": null,
            "children": null,
            "wallpapers": 1,
            "created_by": {
                "id": "Q6lB",
                "display_name": "Administrator"
            },
            "created_at": 1596651707,
            "updated_at": 1596651707
        }
    ]
}

Get a tag

GET https://api.lolwallpapers.net/beta/tags/:name

Path Parameters

Name
Type
Description

name

string

The tag's name.

{
    "status": "success",
    "data": {
        "name": "triple screen",
        "parent": null,
        "children": null,
        "wallpapers": 1,
        "created_by": {
            "id": "Q6lB",
            "display_name": "Administrator"
        },
        "created_at": 1596651707,
        "updated_at": 1596651707
    }
}

Last updated

Was this helpful?