{ "opencollection": "1.0.0", "info": { "name": "Runloop agents gateway-configs API", "version": "0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "gateway-configs", "type": "folder" }, "items": [ { "info": { "name": "List GatewayConfigs.", "type": "http" }, "http": { "method": "GET", "url": "https://api.runloop.ai/v1/gateway-configs", "params": [ { "name": "name", "value": "", "type": "query", "description": "Filter by name (partial match supported)." }, { "name": "id", "value": "", "type": "query", "description": "Filter by ID." }, { "name": "limit", "value": "", "type": "query", "description": "The limit of items to return. Default is 20. Max is 5000." }, { "name": "starting_after", "value": "", "type": "query", "description": "Load the next page of data starting after the item with the given ID." }, { "name": "include_total_count", "value": "", "type": "query", "description": "If true (default), includes total_count in the response. Set to false to skip the count query for better performance on large datasets." } ] }, "docs": "List all GatewayConfigs for the authenticated account, including system-provided configs like 'anthropic' and 'openai'." }, { "info": { "name": "Create a GatewayConfig.", "type": "http" }, "http": { "method": "POST", "url": "https://api.runloop.ai/v1/gateway-configs", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new GatewayConfig to proxy API requests through the agent gateway. The config specifies the target endpoint and how credentials should be applied." }, { "info": { "name": "Get a GatewayConfig.", "type": "http" }, "http": { "method": "GET", "url": "https://api.runloop.ai/v1/gateway-configs/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the GatewayConfig." } ] }, "docs": "Get a specific GatewayConfig by its unique identifier." }, { "info": { "name": "Update a GatewayConfig.", "type": "http" }, "http": { "method": "POST", "url": "https://api.runloop.ai/v1/gateway-configs/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the GatewayConfig to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing GatewayConfig. All fields are optional." }, { "info": { "name": "Delete a GatewayConfig.", "type": "http" }, "http": { "method": "POST", "url": "https://api.runloop.ai/v1/gateway-configs/:id/delete", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the GatewayConfig to delete." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Delete an existing GatewayConfig. This action is irreversible." } ] } ], "bundled": true }