For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
GuidesAPI reference
GuidesAPI reference
  • API Overview
      • GETList Tags

Get started

  • Overview
  • Introduction
  • Unified API
  • Linked Account
  • Merge Link
  • Use cases

Implementation

  • Sandboxes
  • SDKs
  • API access
  • Syncing data
  • Writing data
  • Data minimization
  • Supplemental data
  • Errors
  • Integration metadata

API reference

  • ATS
  • HRIS
  • Accounting
  • Ticketing
  • CRM
  • File Storage
  • Knowledge Base
  • Chat

Resources

  • Help Center
  • Merge.dev
  • Changelog
© Merge 2026Terms of usePrivacy policy
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
API OverviewTags

List Tags

GET
https://api-gateway.merge.dev/tags
GET
/tags
$curl https://api-gateway.merge.dev/tags
200Retrieved
1{
2 "data": [
3 {
4 "id": "tag_abc123",
5 "tag_key": "environment",
6 "tag_value": "production",
7 "object": "tag",
8 "is_global": true,
9 "created_at": "2026-01-01T00:00:00Z",
10 "updated_at": "2026-01-01T00:00:00Z"
11 },
12 {
13 "id": "tag_def456",
14 "tag_key": "team",
15 "tag_value": "ml-platform",
16 "object": "tag",
17 "org_id": "org_xyz789",
18 "is_global": false,
19 "created_at": "2026-02-15T00:00:00Z",
20 "updated_at": "2026-02-15T00:00:00Z"
21 }
22 ],
23 "object": "list",
24 "has_more": false
25}

List all available tags.

Returns tags available for the authenticated organization, including both global and org-scoped tags.

Was this page helpful?
Previous

List Routing Strategies

Response

Successful Response
datalist of objects
object"list"
has_morebooleanDefaults to false
next_cursorstring or null