1. Style
Lnk.Bio
  • Getting Started
    • Introduction
    • Endpoints
    • Authorization
    • Private Apps
      • Introduction
      • Create a Private App
      • Generate an Access Token
    • Public Apps
      • Introduction
      • Create a Public App
      • Generate an Access Token
  • API Methods
    • Me
      • Retrieve basic profile info
      • Update profile picture
    • Lnks
      • Retrieve list of current Lnks
      • Create a new Lnk
      • Delete an existing Lnk
      • Edit an existing Lnk
      • Bulk reorder Lnks
    • Groups
      • Retrieve list of Lnk Groups
    • Style
      • Get current style
        GET
      • Set profile colors
        POST
      • Set profile fonts
        POST
      • Set profile wallpapers
        POST
      • Apply a free theme
        POST
      • Reset theme to defaults
        POST
      • List available fonts
        GET
      • List available free themes
        GET
    • Pages
      • List all pages
      • Create a new page
      • Edit an existing page
      • Reorder pages
      • Delete a page
    • Blocks
      • Icons
        • Add an icon to a BLOCK_ICONS block
        • Edit an icon in a BLOCK_ICONS block
        • Search available icons
        • Delete an icon from a BLOCK_ICONS block
        • Sort icons within a BLOCK_ICONS block
        • List icons in an Icons block
      • Forms
        • List available forms
      • List blocks in a page
      • List supported block types
      • Add a block to a page
      • Delete a block from a page
      • Reorder blocks in a page
  • Schemas
    • Lnk
    • SuccessResponse
    • PageSummary
    • StyleData
    • BlockSummary
    • Font
    • FormSummary
    • ThemeSummary
    • BlockType
    • IconSummary
  1. Style

Set profile wallpapers

POST
https://lnk.bio/oauth/v1/style/wallpapers
Set mobile and/or desktop wallpaper images. Provide a URL to an image (jpg, png, gif, svg). The image is downloaded, validated, processed, and uploaded to CDN. Pass an empty string to remove a wallpaper. Requires a UNIQUE subscription.

Request

Authorization
OAuth 2.0
Authorization Code
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Authorize URL: https://lnk.bio/manage/access
Token URL: https://lnk.bio/oauth/token
or
Body Params application/x-www-form-urlencodedRequired

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://lnk.bio/oauth/v1/style/wallpapers' \
--data-urlencode 'mobile=https://example.com/wallpaper-mobile.jpg' \
--data-urlencode 'desktop=https://example.com/wallpaper-desktop.jpg'

Responses

🟢200
application/json
Wallpapers updated successfully
Body

Example
{
    "status": true,
    "errors": [
        "string"
    ]
}
🟠400BadRequest
🟠401Unauthorized
Modified at 2026-04-11 09:05:44
Previous
Set profile fonts
Next
Apply a free theme
Built with