Skip to main content
GET
/
v1
/
apps
/
{app_id}
/
endpoints
List Endpoints
curl --request GET \
  --url https://api.apitally.io/v1/apps/{app_id}/endpoints \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": 123,
      "method": "<string>",
      "path": "<string>"
    }
  ]
}

Authorizations

Api-Key
string
header
required

Path Parameters

app_id
integer
required

App ID

Required range: x >= 1

Query Parameters

app_env_id
integer | null

Filter to environment ID, if provided.

Required range: x >= 1
method
string | null

Filter to HTTP method(s), comma-separated.

Maximum string length: 64
Example:

"GET,POST"

path
string | null

Filter to path pattern, supports wildcards (*).

Maximum string length: 1024
Example:

"/api/v1/*"

Response

Successful Response

data
EndpointItem · object[]
required

List of endpoints.