Get Package Price 3-Month API

Retrieve the 3-month subscription price for a specific group/plan

Pricing

Get Package Price 3-Month API

Retrieve the quarterly subscription price for any subscription group. Get pricing for 3-month billing cycles with potential savings.

Quarterly Price

3-month subscription cost.

Savings

Better per-month rate.

90 Days

Three months of access.


Endpoint Overview

QUERY/graphql

Retrieve the 3-month subscription price for a specific group ID. Quarterly plans often include discounts compared to monthly billing.

Authentication:Bearer Token
Required scopes:useradmin

Request Parameters

groupIdInt!Required

The ID of the subscription group to get pricing for.


GraphQL Query

query getPackagePrice3($groupId: Int!) {
  getPackagePrice3(groupId: $groupId) {
    groupId
    price
    currency
    duration
    savings
  }
}

Variables:

{
  "groupId": 100
}

HTTP Request:

curl -X POST https://api.orbnet.com/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{
    "query": "query getPackagePrice3($groupId: Int!) { getPackagePrice3(groupId: $groupId) { groupId price currency duration } }",
    "variables": {
      "groupId": 100
    }
  }'

Response

200Price Retrieved Successfully
{
  "data": {
    "getPackagePrice3": {
      "groupId": "100",
      "price": 24.99,
      "currency": "USD",
      "duration": 90,
      "savings": "17%"
    }
  }
}


Quarterly Savings

3-month plans typically offer 10-20% savings compared to paying monthly. The exact discount varies by group.

Want Even More Savings?

Check annual plans for the best per-month rates.

View Annual Pricing