Get Account Information
curl --request GET \
--url https://app.fliqr.ai/api/accounts/me \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/me"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"page_id": 123,
"name": "<string>",
"active": true,
"created": 123,
"total_users": 123
}Accounts
Get account information
Get business account details.
GET
/
accounts
/
me
Get Account Information
curl --request GET \
--url https://app.fliqr.ai/api/accounts/me \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/me"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"page_id": 123,
"name": "<string>",
"active": true,
"created": 123,
"total_users": 123
}Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Was this page helpful?
⌘I