Skip to main content
GET
Get effective network view (BASE networks with precedence applied)

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

Idempotency-Key
string<uuid>
required

Client-generated unique key per operation intent (UUID). Same key + identical body replays the original response; same key + different body returns 409.

Query Parameters

after
string

Cursor to start fetching records after — the pagination.end_cursor of a previous response. Omit it to fetch the first page, and stop paging once pagination.has_next is false. Sending it empty is a 400: an empty cursor is a broken cursor, not a request for the first page.

Minimum string length: 1
cursor
string

Deprecated: use after.

Minimum string length: 1
limit
number
default:50

Results per page (1–200)

country
string

Only return operators reachable in this country. ISO 3166-1 alpha-3 code (for example DNK, DEU) — not alpha-2.

Pattern: ^[A-Z]{3}$

Response

200 - application/json

Paginated effective CPO footprint with the own/published/overlap precedence summary counts.

data
object[]
required

Effective CPO footprint entries for this page.

published_base_network_cpo_count
number
required

CPO count contributed by published BASE networks.

own_base_network_cpo_count
number
required

CPO count contributed by the tenant's own BASE networks.

overlap_cpo_count
number
required

CPO count present in both own and published networks (override applied).

pagination
object
required

Pagination state for this page.

next_cursor
string | null
required
deprecated

Deprecated: use pagination.end_cursor.

Example:

null

has_next
boolean
required
deprecated

Deprecated: use pagination.has_next.