Measure logo
REST API ReferenceDashboard APINetwork Requests

List an app's network endpoints

GET/apps/{id}/networkRequests/endpoints

An empty query returns up to 20 generated endpoint patterns. A non-empty query returns a de-duplicated union of up to 20 matching generated endpoint patterns and up to 20 matching captured request paths (up to 40 results total). Each source is ranked by request count.

Use query to search endpoint text or enter a domain and path pattern. from and to default to the last seven days when omitted.

Authorization

bearerAuth
AuthorizationBearer <token>

User access token issued at sign-in. Sent as Authorization: Bearer <access-token> unless cookies are used to send tokens. The /auth/refresh and /auth/signout endpoints expect the session's refresh token in the same header format instead.

In: header

Path Parameters

id*string

App's UUID.

Formatuuid

Query Parameters

from?string

ISO 8601 UTC string in milliseconds precision. Example: 2023-11-01T18:30:00.000Z. Omitting both from and to returns the last seven days.

to?string

ISO 8601 UTC string in milliseconds precision. Example: 2023-11-01T18:30:00.000Z. Omitting both from and to returns the last seven days.

query?string

Endpoint text or a domain and path pattern.

Response Body

application/json

curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/networkRequests/endpoints"
{  "results": [    {      "domain": "api.example.com",      "path_pattern": "/api/users/*"    },    {      "domain": "cdn.example.com",      "path_pattern": "/assets/**"    }  ]}

Think this page can be better?

Open an issue