Skip to main content

Endpoints

List Endpoints

List all active endpoints on the account

Request

GET /endpoints

Example Request

curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/endpoints

Response

Returns a 200 response on success

Example Response

{
"endpoints": [
{
"created_at": "2024-02-16T19:35:30Z",
"hostport": "437e4162bd8e.ngrok.paid:443",
"id": "ep_2cSjylRoERIy4iWK6WvyM8iGBJI",
"proto": "https",
"public_url": "https://437e4162bd8e.ngrok.paid",
"tunnel": {
"id": "tn_2cSjylRoERIy4iWK6WvyM8iGBJI",
"uri": "https://api.ngrok.com/tunnels/tn_2cSjylRoERIy4iWK6WvyM8iGBJI"
},
"type": "ephemeral",
"updated_at": "2024-02-16T19:35:30Z"
},
{
"created_at": "2024-02-16T19:35:27Z",
"domain": {
"id": "rd_2cSjyFcMgouXhorVWV04TEc6ymx",
"uri": "https://api.ngrok.com/reserved_domains/rd_2cSjyFcMgouXhorVWV04TEc6ymx"
},
"edge": {
"id": "edgtls_2cSjyGeNROACDCqWqgVKmVny8Qj",
"uri": "https://api.ngrok.com/edges/tls/edgtls_2cSjyGeNROACDCqWqgVKmVny8Qj"
},
"hostport": "endpoint-example2.com:443",
"id": "ep_2cSjyTNy61ZcuweildgxZyhgk9F",
"proto": "tls",
"public_url": "tls://endpoint-example2.com",
"type": "edge",
"updated_at": "2024-02-16T19:35:27Z"
}
],
"next_page_uri": null,
"uri": "https://api.ngrok.com/endpoints"
}

Fields

NameTypeDescription
endpointsEndpointthe list of all active endpoints on this account
uristringURI of the endpoints list API resource
next_page_uristringURI of the next page, or null if there is no next page

Endpoint fields

NameTypeDescription
idstringunique endpoint resource identifier
regionstringidentifier of the region this endpoint belongs to
created_atstringtimestamp when the endpoint was created in RFC 3339 format
updated_atstringtimestamp when the endpoint was updated in RFC 3339 format
public_urlstringURL of the hostport served by this endpoint
protostringprotocol served by this endpoint. one of http, https, tcp, or tls
hostportstringhostport served by this endpoint (hostname:port)
typestringwhether the endpoint is ephemeral (served directly by an agent-initiated tunnel) or edge (served by an edge)
metadatastringuser-supplied metadata of the associated tunnel or edge object
domainRefthe domain reserved for this endpoint
tcp_addrRefthe address reserved for this endpoint
tunnelRefthe tunnel serving requests to this endpoint, if this is an ephemeral endpoint
edgeRefthe edge serving requests to this endpoint, if this is an edge endpoint

Ref fields

NameTypeDescription
idstringa resource identifier
uristringa uri for locating a resource

Get Endpoint

Get the status of an endpoint by ID

Request

GET /endpoints/{id}

Example Request

curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/endpoints/ep_2cSjylRoERIy4iWK6WvyM8iGBJI

Response

Returns a 200 response on success

Example Response

{
"created_at": "2024-02-16T19:35:30Z",
"hostport": "437e4162bd8e.ngrok.paid:443",
"id": "ep_2cSjylRoERIy4iWK6WvyM8iGBJI",
"proto": "https",
"public_url": "https://437e4162bd8e.ngrok.paid",
"tunnel": {
"id": "tn_2cSjylRoERIy4iWK6WvyM8iGBJI",
"uri": "https://api.ngrok.com/tunnels/tn_2cSjylRoERIy4iWK6WvyM8iGBJI"
},
"type": "ephemeral",
"updated_at": "2024-02-16T19:35:30Z"
}

Fields

NameTypeDescription
idstringunique endpoint resource identifier
regionstringidentifier of the region this endpoint belongs to
created_atstringtimestamp when the endpoint was created in RFC 3339 format
updated_atstringtimestamp when the endpoint was updated in RFC 3339 format
public_urlstringURL of the hostport served by this endpoint
protostringprotocol served by this endpoint. one of http, https, tcp, or tls
hostportstringhostport served by this endpoint (hostname:port)
typestringwhether the endpoint is ephemeral (served directly by an agent-initiated tunnel) or edge (served by an edge)
metadatastringuser-supplied metadata of the associated tunnel or edge object
domainRefthe domain reserved for this endpoint
tcp_addrRefthe address reserved for this endpoint
tunnelRefthe tunnel serving requests to this endpoint, if this is an ephemeral endpoint
edgeRefthe edge serving requests to this endpoint, if this is an edge endpoint

Ref fields

NameTypeDescription
idstringa resource identifier
uristringa uri for locating a resource