cURL
curl --request GET \ --url https://api.ngrok.com/backends/static \ --header 'Authorization: Bearer <token>' \ --header 'ngrok-version: <ngrok-version>'
{ "backends": [ { "id": "<string>", "uri": "<string>", "created_at": "<string>", "description": "<string>", "metadata": "<string>", "address": "<string>", "tls": { "enabled": true } } ], "uri": "<string>", "next_page_uri": "<string>" }
List all static backends on this account
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
the list of all static backends on this account
Show child attributes
unique identifier for this static backend
URI of the StaticBackend API resource
timestamp when the backend was created, RFC 3339 format
human-readable description of this backend. Optional
arbitrary user-defined machine-readable data of this backend. Optional
the address to forward to
tls configuration to use
if TLS is checked
URI of the static backends list API resource
URI of the next page, or null if there is no next page
Was this page helpful?