Skip to main content
GET
/
v1
/
gate
/
services
List Gate services for the authenticated organization
curl --request GET \
  --url https://api.tripwirejs.com/v1/gate/services \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "object": "gate_service",
      "id": "gsvc_0123456789abcdefghjkmnpqrs",
      "status": "active",
      "discoverable": true,
      "name": "Acme Growth Workspace",
      "description": "203.0.113.10",
      "website": "https://app.acme.co/signup",
      "dashboard_login_url": "https://app.acme.co/signup",
      "webhook_url": "https://app.acme.co/signup",
      "env_vars": [
        {
          "name": "Acme Growth Workspace",
          "key": "TRIPWIRE_PUBLISHABLE_KEY",
          "secret": true
        }
      ],
      "docs_url": "https://app.acme.co/signup",
      "sdks": [
        {
          "label": "Chrome",
          "install": "npm install @tripwire/server-node",
          "url": "https://app.acme.co/signup"
        }
      ],
      "branding": {
        "logo_url": "https://app.acme.co/signup",
        "primary_color": "#111827",
        "secondary_color": "#60a5fa",
        "ascii_art": "TRIPWIRE",
        "verified": true
      },
      "consent": {
        "terms_url": "https://app.acme.co/signup",
        "privacy_url": "https://app.acme.co/signup"
      },
      "created_at": "2026-03-24T20:00:00.000Z",
      "updated_at": "2026-03-24T20:00:05.000Z"
    }
  ],
  "meta": {
    "request_id": "req_cf147349a4134208aebb8c70e25fb7e1"
  }
}

Authorizations

Authorization
string
header
required

Send Authorization: Bearer . Gate business endpoints require sk_* secret keys. Gate workflow endpoints use gate-native bearer tokens such as gtpoll_* or agt_* where documented.

Response

Organization Gate service list.

data
object[]
required
Example:
[
{
"object": "gate_service",
"id": "gsvc_0123456789abcdefghjkmnpqrs",
"status": "active",
"discoverable": true,
"name": "Acme Growth Workspace",
"description": "203.0.113.10",
"website": "https://app.acme.co/signup",
"dashboard_login_url": "https://app.acme.co/signup",
"webhook_url": "https://app.acme.co/signup",
"env_vars": [
{
"name": "Acme Growth Workspace",
"key": "TRIPWIRE_PUBLISHABLE_KEY",
"secret": true
}
],
"docs_url": "https://app.acme.co/signup",
"sdks": [
{
"label": "Chrome",
"install": "npm install @tripwire/server-node",
"url": "https://app.acme.co/signup"
}
],
"branding": {
"logo_url": "https://app.acme.co/signup",
"primary_color": "#111827",
"secondary_color": "#60a5fa",
"ascii_art": "TRIPWIRE",
"verified": true
},
"consent": {
"terms_url": "https://app.acme.co/signup",
"privacy_url": "https://app.acme.co/signup"
},
"created_at": "2026-03-24T20:00:00.000Z",
"updated_at": "2026-03-24T20:00:05.000Z"
}
]
meta
object
required
Example:
{
"request_id": "req_cf147349a4134208aebb8c70e25fb7e1"
}