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 Routing Policies
      • GETList Routing Strategies

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 OverviewRouting

List Routing Policies

GET
https://api-gateway.merge.dev/routing/policies
GET
/routing/policies
$curl https://api-gateway.merge.dev/routing/policies
200Retrieved
1{
2 "object": "list",
3 "data": [
4 {
5 "id": "policy_abc123def456",
6 "name": "Production Policy",
7 "strategy": "cost_optimized",
8 "description": "Route simple queries cheaply, complex queries to capable models",
9 "is_intelligent": true,
10 "providers": [
11 {
12 "provider": "openai",
13 "model": "gpt-5.1"
14 },
15 {
16 "provider": "anthropic",
17 "model": "claude-sonnet-4-20250514"
18 }
19 ],
20 "is_active": true
21 }
22 ]
23}

List routing policies available to the current user.

Returns both org-specific policies and the managed (simulator) policy.

Was this page helpful?
Previous

Create Embedding

Next

List Routing Strategies

Response

Successful Response
object"list"
datalist of objects