Get Tags Items
Retrieve the list of items of a tag
GET/v1/users/tags/:id/items- Param
- Response
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ✅ | ID of the tag |
Example
/v1/users/tags/:id/items
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the item |
| is_list | boolean | Whether the item is a list |
| type | object | Type information of the item |
| category | object | Category information of the item |
| topics | array | Topics associated with the item |
| title | string | Title of the item |
| body_content | string | Body content of the item |
| body_content_plaintext | string | Plain text version of the body content |
| body_content_json | object | JSON version of the body content |
| body_content_placeholders | object | Placeholders for the body content |
| description | string | Description of the item |
| description_plaintext | string | Plain text version of the description |
| visibility | object | Visibility settings of the item |
| images | array | Images associated with the item |
| cover_images | array | Cover images of the item |
| avatar_image | string | Avatar image URL of the item |
| tutorial_steps | array | Tutorial steps for the item |
| url | string | URL of the item |
| is_premium | boolean | Whether the item is premium |
| price | number | Price of the item |
| average_rate | number | Average rating of the item |
| video_url | string | Video URL associated with the item |
| created_at | string | Timestamp when the item was created |
| updated_at | string | Timestamp when the item was last updated |
| user | object | User information who created the item |
| total_upvotes | number | Total number of upvotes |
| total_uses | number | Total number of uses |
| total_saves | number | Total number of saves |
| command | string | Command associated with the item |
| tags | array | Tags associated with the item |
Example
{
"code": 200,
"meta": {
"version": "v1.0.0",
"is_authenticaded": true
},
"response": [
{
"id": "p6tXBrnP_",
"is_list": false,
"type": {
"id": 1,
"name": "Prompt"
},
"category": {
"id": 1,
"name": "Text"
},
"topics": null,
"title": "My Prompt to test tag",
"body_content": "Ola mundo",
"body_content_plaintext": "Ola mundo",
"body_content_json": null,
"body_content_placeholders": {
"list": null,
"plaintext": ""
},
"description": "<p>Snack Prompt is awesome!</p>",
"description_plaintext": "Snack Prompt is awesome!",
"visibility": {
"id": 1,
"name": "Public"
},
"images": null,
"cover_images": null,
"avatar_image": "",
"tutorial_steps": null,
"url": "https://release.snackprompt.com/prompt/my-prompt-to-test-tag",
"is_premium": false,
"price": 0,
"average_rate": 0,
"video_url": "",
"created_at": "2025-05-21T20:01:42.155901Z",
"updated_at": null,
"user": {
"id": "HhWKhVIPM7er5KttMNC68hl5o8t1",
"name": "Guilherme Esteves",
"username": "gui_esteves",
"avatar": "http://files.snackprompt.com.s3-website.us-east-2.amazonaws.com/HhWKhVIPM7er5KttMNC68hl5o8t1-1730982548.png"
},
"total_upvotes": 0,
"total_uses": 0,
"total_saves": 1,
"command": "",
"tags": null
}
]
}
CURL Example
curl -X GET "https://api-integrations.snackprompt.com/v1/users/tags/:id/items" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"