get_project
Fetch a single project by UUID, including plan / resource / subscriber / payment-method counts.
Purpose
Fetch full detail for one project along with its counts (plans, resources, subscribers, payment methods). Use after list_projects once you know which row to dive into.
Required ability
project:view
Input schema
{
"type": "object",
"required": ["project_id"],
"properties": {
"project_id": {
"type": "string",
"description": "UUID of the project to fetch."
}
}
}Output shape
{
"data": {
"id": "prj_01HX...",
"name": "Research Premium",
"handle": "research-premium",
"type": "telegram",
"description": "Weekly deep-dive research notes.",
"banner_url": "https://static.memberpass.net/...",
"photo_url": "https://static.memberpass.net/...",
"active": true,
"team_id": "tem_01HX...",
"counts": {
"plans": 3,
"resources": 2,
"subscribers": 241,
"payment_methods": 2
},
"created_at": "2026-05-18T10:05:00Z",
"updated_at": "2026-05-18T10:05:00Z"
}
}Example prompts
"Get details for project
prj_01HX...."
"How many subscribers does my Research Premium project have right now?"
Failure modes
RESOURCE_NOT_FOUND— unknownproject_id, or the project belongs to a team outside the token's scope.TOKEN_MISSING_ABILITY— token lacksproject:view.
Related
How is this guide?