curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/tags/{id}Retrieve a specific tag by ID
curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/tags/{id}{
"id": "tag123",
"name": "Technology",
"slug": "technology",
"description": "Technology-related content",
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-21T15:30:00Z"
}
{
"error": {
"code": "NOT_FOUND",
"message": "Tag not found",
"details": {
"id": "tag123"
}
}
}
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj456/tags/tag123" \
-H "Authorization: Bearer YOUR_API_KEY"