Skip to main content
GET
/
pipelines
/
{pipeline_id}
/
opportunities
cURL
curl --request GET \
  --url https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities \
  --header 'X-ACCESS-TOKEN: <api-key>'
{
  "data": [
    {
      "id": 123,
      "contact_id": 123,
      "title": "<string>",
      "description": "<string>",
      "value": 123,
      "status": "<string>",
      "priority": "<string>",
      "stage": {
        "id": 123,
        "name": "<string>"
      },
      "assigned_admins": [
        123
      ],
      "created_at": "2028-02-08 12:34:56",
      "created_by": 123,
      "updated_at": "2028-02-08 12:34:56",
      "updated_by": 123
    }
  ]
}

Authorizations

X-ACCESS-TOKEN
string
header
required

Path Parameters

pipeline_id
number
required

Query Parameters

offset
integer
default:0

Specifies the starting position of the first record to return in a paginated response.

limit
integer
default:100

Sets the maximum number of records to return per request.

Response

200 - application/json

successful operation

data
object[]