Create a new empty page. The title must be at least 5 characters. Custom URLs require a UNIQUE subscription. Page creation is limited by the user's subscription plan (FREE: 3, MINI: 5, UNIQUE: 10).
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/page/add' \
--data-urlencode'title=My About Page' \
--data-urlencode'url=about-me' \
--data-urlencode'hidden=false'
Responses
🟢200
application/json
Page created successfully
Body
Example
{"status":true,"data":{"page_id":"PAGE_ABOUT_6612a3b4c5d6e","title":"My About Page","url":"about-me"}}