List property options
Return the selectable choices of a single project-level property as a paginated list. This is how you build a picker for an OPTION property, and how you resolve a human-readable label such as Critical to the option id you must send when setting a property value on a work item.
The property in the path must have property_type: "OPTION" — see Work item properties. Properties of any other type have no options.
Reads work in either work item type mode — only writes are mode-gated, so listing options never returns 409. See Work item type modes.
Path Parameters
slug:requiredstringThe workspace slug. It appears in your Plane URLs — in https://app.plane.so/my-team/projects/, the slug is my-team.
project_id:requiredstring (uuid)The project that owns the property.
property_id:requiredstring (uuid)The property whose options you want to list. A property id from another project returns 404, even inside the same workspace.
Query Parameters
There are no filters or search on this endpoint — a property's option list is short and is returned whole. Check your spelling on order_by: a value outside the list below is not rejected, it silently falls back to the default ordering, so a typo shows up as an unexpected sort order rather than an error.
Ordering
order_by:optionalstringField to sort by. Prefix with - for descending.
sort_order,-sort_order— the order the property itself presents its choices increated_at,-created_at— when each option was addedid,-id
Order by sort_order when you are rendering the picker to a user; it matches what Plane's own UI shows. created_at is orderable but is not returned in the response body.
Pagination
per_page:optionalintegerPage size. Defaults to 50, maximum 200. Most properties have well under 50 options, so one page is usually the entire list.
offset:optionalintegerNumber of rows to skip from the start of the result set. Maximum 10000. Read the next value from the response rather than computing offsets yourself.
paginate:optionalstringSet to cursor to opt into the COUNT-free keyset envelope, which returns next_cursor and has_more instead of next and total_count. Omit it for the default offset envelope.
count:optionalbooleanDefaults to true. Set to false to skip the COUNT(*) behind total_count; the field is then omitted from the response.
Scopes
projects.work_item_properties:read
Errors
| Status | Code | Cause |
|---|---|---|
401 | unauthorized | Missing or invalid credentials. |
403 | forbidden | Your role or token scope can't read this project's properties. |
404 | resource_not_found | No such property, project, or workspace — or the property belongs to a different project. |
429 | rate_limited | Throttled. Honor the Retry-After header before retrying. |
No expansion on options
Property options don't accept ?expand=. The response is the flat option object shown here.
curl -X GET \
"https://api.plane.so/api/v2/workspaces/my-team/projects/4af68566-94a4-4eb3-94aa-50dc9427067b/work-item-properties/c1a7f2d8-6b34-4e59-9f80-2d4a7c31e6b5/options/?order_by=sort_order&per_page=50" \
-H "X-Api-Key: $PLANE_API_KEY"import requests
response = requests.get(
"https://api.plane.so/api/v2/workspaces/my-team/projects/4af68566-94a4-4eb3-94aa-50dc9427067b/work-item-properties/c1a7f2d8-6b34-4e59-9f80-2d4a7c31e6b5/options/",
headers={"X-Api-Key": "your-api-key"},
params={"order_by": "sort_order", "per_page": 50},
)
print(response.json())const params = new URLSearchParams({ order_by: "sort_order", per_page: "50" });
const response = await fetch(
`https://api.plane.so/api/v2/workspaces/my-team/projects/4af68566-94a4-4eb3-94aa-50dc9427067b/work-item-properties/c1a7f2d8-6b34-4e59-9f80-2d4a7c31e6b5/options/?${params}`,
{
headers: {
"X-Api-Key": "your-api-key",
},
}
);
const data = await response.json();{
"data": [
{
"id": "9d3b5c71-2e48-4a6f-b1c9-7f0e83d25a64",
"name": "Critical",
"description": "Customer-visible outage",
"is_default": false,
"sort_order": 15000,
"external_id": null,
"external_source": null
},
{
"id": "5e2a0c93-7d41-4b8e-a36f-91c4d0b7e582",
"name": "Major",
"description": "Degraded but usable",
"is_default": true,
"sort_order": 25000,
"external_id": null,
"external_source": null
},
{
"id": "a84f1b60-95c2-4d37-8e5a-3b0f6d29c471",
"name": "Minor",
"description": "Cosmetic or low impact",
"is_default": false,
"sort_order": 35000,
"external_id": null,
"external_source": null
}
],
"next": null,
"previous": null,
"total_count": 3,
"pagination": {
"style": "offset"
}
}{
"data": [
{
"id": "9d3b5c71-2e48-4a6f-b1c9-7f0e83d25a64",
"name": "Critical",
"description": "Customer-visible outage",
"is_default": false,
"sort_order": 15000,
"external_id": null,
"external_source": null
}
],
"next_cursor": "b3A9MTcx",
"has_more": true,
"pagination": {
"style": "cursor"
}
}Cache the id, refresh the label
The option id is what a work item stores. Cache the id-to-name mapping from this endpoint and refresh it when you render, so a rename in Plane shows up in your UI without breaking the values you already wrote.

