Retrieve all suggestions from your project
Retrieve all suggestions from your project. This endpoint returns a paginated list of all suggestions with vote counts and status information.Documentation Index
Fetch the complete documentation index at: https://docs.suggestkit.app/llms.txt
Use this file to discover all available pages before exploring further.
| Field | Type | Required | Description |
|---|---|---|---|
| suggestions | array | Yes | Array of suggestion objects |
| pagination.limit | number | Yes | Number of suggestions returned |
| pagination.offset | number | Yes | Number of suggestions skipped |
| pagination.total | number | Yes | Total number of suggestions |
| pagination.hasMore | boolean | Yes | Whether there are more suggestions |
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Unique suggestion identifier |
| title | string | Yes | Suggestion title |
| description | string | Yes | Suggestion description |
| status | string | Yes | Status (PENDING, PLANNED, IN_PROGRESS, COMPLETED, CLOSED) |
| projectId | string | Yes | Project this suggestion belongs to |
| label | object | No | Label information (id, name, color) |
| voteCount | number | Yes | Total number of votes |
| hasUserVoted | boolean | Yes | Whether the user has voted for this suggestion |
| createdAt | string | Yes | Creation timestamp (ISO 8601) |
| updatedAt | string | Yes | Last update timestamp (ISO 8601) |
| Status Code | Description | Example Response |
|---|---|---|
| 400 | Bad request - Invalid parameters | {"error": "limit must be between 1 and 100"} |
| 401 | Unauthorized - Invalid API key | {"error": "Unauthorized"} |
| 500 | Internal server error | {"error": "Failed to get suggestions"} |