Skip to main content
GET
/
gateway
/
{gateway_topic}
Get a specific gateway
curl --request GET \
  --url https://api.quiva.ai/gateway/{gateway_topic} \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "name": "My API Gateway",
    "description": "Gateway for my service APIs",
    "url": "https://abc123.quiva.ai",
    "subject": "ms.gateway.abcdef123456.gateway",
    "active": true,
    "timeout": 30000,
    "limit": {
      "request": 10000,
      "time": 1000
    },
    "modified": 1713531894,
    "type": "created"
  },
  "metadata": {
    "subject": "ms.gateway.abcdef123456.gateway"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

gateway_topic
string
required

Unique topic identifier of the gateway

Response

Gateway details retrieved successfully

body
object
metadata
object