search parameter and control pagination with page and per_page.
Endpoint
Request
Headers
string
required
Your bearer token in the format
Bearer <token>.Query parameters
string
Comma-separated list of fields to return for each network (e.g.
fields=name,logo_url). When omitted, all fields are returned.integer
The page number to retrieve. Defaults to
1.integer
The number of networks to return per page. Defaults to
100.string
Filter networks by name. For example,
?search=impact returns all networks whose name contains “impact”.Example request
Responses
200 — OK
Returns a paginated JSON object. Themeta key contains pagination details and the data array contains the network records.
object
Pagination metadata for the response.
array
An array of network objects.
Example response
400 — Invalid input
One or more query parameters have invalid values. Check yourfields, page, or per_page values.