Skip to main content
GET
/
integrations
/
linear
/
properties
Get Linear properties
curl --request GET \
  --url https://api.getfernand.com/integrations/linear/properties \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "states": [
      {
        "id": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
        "name": "In Progress",
        "type": "started",
        "color": "#f2c94c",
        "position": 2,
        "team_id": "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e"
      }
    ],
    "priorities": [
      {
        "id": 1,
        "name": "Urgent"
      }
    ],
    "users": [
      {
        "id": "9c0d1e2f-3a4b-5c6d-7e8f-9a0b1c2d3e4f",
        "name": "Richard Hendricks",
        "avatar_url": "https://avatar.linear.app/9c0d1e2f"
      }
    ],
    "labels": [
      {
        "id": "0d1e2f3a-4b5c-6d7e-8f9a-0b1c2d3e4f5a",
        "color": "#5e6ad2",
        "name": "Bug",
        "team_id": "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e"
      }
    ],
    "teams": [
      {
        "id": "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e",
        "name": "Engineering"
      }
    ],
    "projects": [
      {
        "id": "1e2f3a4b-5c6d-7e8f-9a0b-1c2d3e4f5a6b",
        "name": "Q1 2026 Roadmap",
        "teams": [
          "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e"
        ]
      }
    ]
  }
}
Retrieves all available Linear properties needed. Returns a 404 error if the Linear integration is not configured for the organization.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Response

Linear properties retrieved successfully.

data
object