Skip to main content
GET
/
v1
/
prompt_versions
/
{prompt_version_id}
/
tags
List prompt version tags
curl --request GET \
  --url https://api.example.com/v1/prompt_versions/{prompt_version_id}/tags
{
  "data": [
    {
      "name": "<string>",
      "id": "<string>",
      "description": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Path Parameters

prompt_version_id
string
required

The ID of the prompt version.

Query Parameters

cursor
string | null

Cursor for pagination (base64-encoded promptVersionTag ID)

limit
integer
default:100

The max number of tags to return at a time.

Response

A list of tags associated with the prompt version

data
PromptVersionTag · object[]
required
next_cursor
string | null
required