Lnk.Bio
  1. Lnks
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
    • Lnks
      • Retrieve list of the current Lnks in your account
        GET
      • Create a new Lnk
        POST
      • Delete an existing Lnk
        POST
    • Groups
      • Retrieve list of the current Lnk Groups in your account
  1. Lnks

Retrieve list of the current Lnks in your account

GET
https://lnk.bio/oauth/v1/lnk/list
Returns an array of Lnks

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************

Request 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/lnk/list'

Responses

🟢200Success
application/json
Body
status
boolean 
optional
Example:
true
errors
array[string]
optional
data
array [object {5}] 
optional
created_at
string 
optional
Example:
2024-02-12T15:17:44+08:00
title
string 
optional
Example:
My Blog Post
image
string 
optional
Example:
https://cdn2.lnk.bi/profilepics/3159524853_20231206705.png
link
string 
optional
Example:
https://myblog.com/post_id
meta
object 
optional
Example
{
  "status": true,
  "errors": [
    null
  ],
  "data": [
    {
      "created_at": "2024-02-12T15:17:44+08:00",
      "title": "My Blog Post",
      "image": "https://cdn2.lnk.bi/profilepics/3159524853_20231206705.png",
      "link": "https://myblog.com/post_id",
      "meta": {
        "id": 1234,
        "timestamp": 1707722264
      }
    }
  ]
}
🟠401Not Authenticated
Previous
Retrieve basic profile info
Next
Create a new Lnk
Built with