Skip to main content
POST
/
api
/
v1
/
tags
Create a tag
curl --request POST \
  --url https://api.example.com/api/v1/tags \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Family Friendly",
  "description": "Listings suitable for families"
}
'
{
  "id": "<string>",
  "name": "Family Friendly",
  "description": "Listings suitable for families"
}

Body

application/json

Tag details including name and optional metadata

name
string
required
Example:

"Family Friendly"

description
string
Example:

"Listings suitable for families"

Response

Tag created successfully

id
string
name
string
Example:

"Family Friendly"

description
string
Example:

"Listings suitable for families"