Skip to main content
GET
/
users
/
me
/
tags
List my tags
curl --request GET \
  --url https://api.staging.blackbird.xyz/flynet/v1/users/me/tags
Returns metadata tags attached to the authenticated member. The subject is resolved from the access token, so there is no member ID in the path. A tag with type: "industry" identifies the member as a restaurant employee.
From the kitchen - Use the industry tag for staff-recognition flows, internal experiences, and industry-only rewards.
Tasting note - Tag type values are lowercase. Match exact case: type === "industry", not "INDUSTRY".
Auth: OAuth access token.

Example

curl https://api.staging.blackbird.xyz/flynet/v1/users/me/tags \
  -H "Authorization: Bearer $ACCESS_TOKEN"

Response

{
  "tags": [
    {
      "object": "user_tag",
      "type": "industry",
      "metadata": [
        { "key": "Employer", "value": ["FLYBAR"] }
      ],
      "created_at": "2026-01-15T21:47:02.273075Z",
      "updated_at": "2026-02-19T18:50:38.512641Z"
    }
  ]
}
A member with no tags returns { "tags": [] }.

Schema

FieldTypeNotes
objectstringAlways "user_tag".
typestringLowercase enum. Currently "industry".
metadataarrayEach item is { "key": string, "value": string[] }.
created_atISO 8601 timestampCreated time.
updated_atISO 8601 timestampLast update time.