Get a type property
Retrieve a single property as exposed by a work item type. The response is the full property definition — the same object List type properties returns, for one id.
The type in the path is part of the lookup, not decoration: a property that exists in the project but is not attached to this type returns 404. That makes this endpoint a cheap "is this property on this type?" check before you send a value or offer the field in a form.
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 the work item type belongs to.
type_id:requiredstring (uuid)The work item type the property is attached to.
Scopes
projects.work_item_types:read
Errors
| Status | Code | Cause |
|---|---|---|
401 | unauthorized | Missing or invalid credentials. |
403 | forbidden | Your role or token scope can't read this project's work item types. |
404 | resource_not_found | No such workspace, project, type, or property — or the property isn't attached to this type. |
429 | rate_limited | Throttled. Honor the Retry-After header before retrying. |
A 404 here can mean "not attached"
The property may exist and be perfectly healthy — just not linked to this type. Read it without the type in the path using Get a work item property to tell the two cases apart, or list the type's properties to see what it actually exposes.
One flat object, and no mode gate
The response is the flat property object shown here, with options already inlined for OPTION properties — there is nothing to fetch separately. Reads also work in either work item type mode; only attaching and detaching are mode-gated. See Work item type modes.
curl -X GET \
"https://api.plane.so/api/v2/workspaces/my-team/projects/4af68566-94a4-4eb3-94aa-50dc9427067b/work-item-types/9d3c7f21-6b48-4e0a-8f52-2c1d7a904e66/properties/c1f0a2d4-73b9-4e6c-8a15-9d0e4b3f7c28/" \
-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-types/9d3c7f21-6b48-4e0a-8f52-2c1d7a904e66/properties/c1f0a2d4-73b9-4e6c-8a15-9d0e4b3f7c28/",
headers={"X-Api-Key": "your-api-key"},
)
print(response.json())const response = await fetch(
"https://api.plane.so/api/v2/workspaces/my-team/projects/4af68566-94a4-4eb3-94aa-50dc9427067b/work-item-types/9d3c7f21-6b48-4e0a-8f52-2c1d7a904e66/properties/c1f0a2d4-73b9-4e6c-8a15-9d0e4b3f7c28/",
{
headers: {
"X-Api-Key": "your-api-key",
},
}
);
const data = await response.json();{
"id": "c1f0a2d4-73b9-4e6c-8a15-9d0e4b3f7c28",
"name": "severity",
"display_name": "Severity",
"description": "How badly this bug affects users",
"property_type": "OPTION",
"relation_type": null,
"is_required": true,
"is_multi": false,
"is_active": true,
"default_value": [],
"settings": {},
"validation_rules": {},
"logo_props": {},
"external_id": null,
"external_source": null,
"created_at": "2026-01-14T09:22:41.478363Z",
"options": [
{
"id": "3b6f1c88-0d24-4a97-9f53-71e8c2b4a069",
"name": "Critical",
"description": "Data loss or full outage",
"is_default": false,
"sort_order": 10000,
"external_id": null,
"external_source": null
},
{
"id": "7e2a9046-5c31-4d8b-a4f6-0b95e13d72c8",
"name": "Major",
"description": "Core workflow blocked",
"is_default": true,
"sort_order": 20000,
"external_id": null,
"external_source": null
}
]
}{
"type": "https://api.plane.so/errors/resource_not_found",
"title": "Not Found",
"status": 404,
"code": "resource_not_found",
"detail": "The requested resource was not found."
}
