# Get pipelines

You can return a list of all your pipelines.

GET /pipelines/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
 curl -X GET -H
 "Authorization: Token <your_64_char_api_key> " "https://<your_app_subdomain>.user.com/api/public/pipelines/"

# Response

{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 149,
            "name": "Pipeline"
        }
    ]
}