Skip to main content
GET
/
projects
/
{project_id}
/
tags
curl --location 'https://api.withblast.com/projects/550e8400-e29b-41d4-a716-446655440000/tags?search=production&limit=20' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
{
  "tags": [
    {
      "tag_id": 101,
      "tag": "production",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-15T10:00:00Z"
    },
    {
      "tag_id": 102,
      "tag": "safety-test",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-16T14:30:00Z"
    },
    {
      "tag_id": 103,
      "tag": "q1-2024",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-20T09:15:00Z"
    },
    {
      "tag_id": 104,
      "tag": "model-comparison",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-22T11:45:00Z"
    }
  ],
  "total": 12
}

Authentication

Authorization
string
required
Bearer token

Path Parameters

project_id
string
required
The unique identifier of the project (UUID format)

Query Parameters

offset
integer
default:"0"
Number of items to skip for pagination
limit
integer
default:"50"
Number of items to return (1-100)
Search tags by name (partial match)

Response

tags
array
required
Array of tag objects
total
integer
required
Total number of tags in the project
curl --location 'https://api.withblast.com/projects/550e8400-e29b-41d4-a716-446655440000/tags?search=production&limit=20' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
{
  "tags": [
    {
      "tag_id": 101,
      "tag": "production",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-15T10:00:00Z"
    },
    {
      "tag_id": 102,
      "tag": "safety-test",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-16T14:30:00Z"
    },
    {
      "tag_id": 103,
      "tag": "q1-2024",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-20T09:15:00Z"
    },
    {
      "tag_id": 104,
      "tag": "model-comparison",
      "project_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2024-01-22T11:45:00Z"
    }
  ],
  "total": 12
}