Skip to main content
GET
/
admin
/
v1
/
networks
/
{network_id}
/
subscriptions
List all payment subscriptions for the network
curl --request GET \
  --url https://api.mn.co/admin/v1/networks/{network_id}/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "member_id": 123,
      "created_at": "2025-11-07T23:17:22+00:00",
      "updated_at": "2025-11-07T23:17:22+00:00",
      "email": "ada.lovelace@example.com",
      "first_name": "<string>",
      "last_name": "<string>",
      "time_zone": "<string>",
      "location": "<string>",
      "referral_count": 123,
      "avatar": "<string>",
      "categories": [
        {
          "id": 123,
          "title": "<string>"
        }
      ],
      "permalink": "<string>",
      "ambassador_level": "<string>",
      "plan": {
        "id": 123,
        "name": "<string>",
        "amount": 123,
        "currency": "<string>",
        "interval": "<string>",
        "type": "<string>",
        "has_free_trial": true
      },
      "subscription": {
        "id": "1234",
        "current_period_start": "2025-11-07T23:17:22+00:00",
        "current_period_end": "2025-11-07T23:17:22+00:00",
        "payment_platform": "<string>",
        "canceled_at": "2025-11-07T23:17:22+00:00",
        "trial_length": 123,
        "trial_start": "2025-11-07T23:17:22+00:00",
        "trial_end": "2025-11-07T23:17:22+00:00",
        "purchased_at": "2025-11-07T23:17:22+00:00"
      }
    }
  ],
  "links": {
    "self": "<string>",
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

network_id
required

The Network's unique integer ID, or subdomain Unique numeric network ID

Query Parameters

status
string
member_id
integer
page
integer
per_page
integer

Response

200 - application/json

Returns paginated list of subscriptions

A paginated list of records

items
object[]

A page of records

Pagination links - the specific format of these links is considered an implementation detail and is subject to change.

Do not assume the links will contain a page parameter.",