# Plans ## List organization plans **get** `/v1/plans` Returns a paginated list of benefit plans linked to the authenticated organization. ### Query Parameters - `limit: optional number` Items per page (default: 20, max: 100) - `page: optional number` Page number (default: 1) ### Returns - `data: array of { id, name }` - `id: string` - `name: string` - `pagination: Pagination` Pagination metadata for list responses. - `limit: number` Items per page - `page: number` Current page number - `total: number` Total number of items - `total_pages: number` Total number of pages ### Example ```http curl https://api.vitablehealth.com/v1/plans \ -H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" ``` #### Response ```json { "data": [ { "id": "pln_abc123def456", "name": "Basic Care" } ], "pagination": { "page": 1, "limit": 20, "total": 1, "total_pages": 1 } } ``` ## Domain Types ### Plan List Response - `PlanListResponse { id, name }` - `id: string` - `name: string`