1. Icons
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
      • Set profile colors
      • Set profile fonts
      • Set profile wallpapers
      • Apply a free theme
      • Reset theme to defaults
      • List available fonts
      • List available free themes
    • 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
          POST
        • Edit an icon in a BLOCK_ICONS block
          POST
        • Search available icons
          GET
        • Delete an icon from a BLOCK_ICONS block
          POST
        • Sort icons within a BLOCK_ICONS block
          POST
        • List icons in an Icons block
          GET
      • Forms
        • List available forms
      • List blocks in a page
        GET
      • List supported block types
        GET
      • Add a block to a page
        POST
      • Delete a block from a page
        POST
      • Reorder blocks in a page
        POST
  • Schemas
    • Lnk
    • SuccessResponse
    • PageSummary
    • StyleData
    • BlockSummary
    • Font
    • FormSummary
    • ThemeSummary
    • BlockType
    • IconSummary
  1. Icons

List icons in an Icons block

GET
https://lnk.bio/oauth/v1/page/block/icon/list
Returns all icons in a BLOCK_ICONS block. The block must belong to the authenticated user and must be of type BLOCK_ICONS.

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
Query Params

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 GET 'https://lnk.bio/oauth/v1/page/block/icon/list?block_id=BL_ICONS_abc123'

Responses

🟢200
application/json
Icons retrieved successfully
Body

Example
{
    "status": true,
    "data": {
        "block_id": "BL_ICONS_abc123",
        "icons": [
            {
                "icon_type": "SOCIAL_IG",
                "url": "https://www.instagram.com/username",
                "hidden": false,
                "position": 0
            }
        ]
    }
}
🟠400BadRequest
🟠401Unauthorized
Modified at 2026-04-11 09:06:00
Previous
Sort icons within a BLOCK_ICONS block
Next
List available forms
Built with