Get Pipelines
curl --request GET \
--url https://app.fliqr.ai/api/pipelines \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/pipelines', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/pipelines"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": 123,
"name": "<string>"
}
]
}Pipelines
Get pipelines
Get list of pipelines
GET
/
pipelines
Get Pipelines
curl --request GET \
--url https://app.fliqr.ai/api/pipelines \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/pipelines', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/pipelines"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": 123,
"name": "<string>"
}
]
}Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Query Parameters
Specifies the starting position of the first record to return in a paginated response.
Sets the maximum number of records to return per request.
Response
200 - application/json
successful operation
Show child attributes
Show child attributes
Was this page helpful?
⌘I