Get Package Price 12-Month API

Retrieve the annual subscription price for a specific group/plan

Pricing

Get Package Price 12-Month API

Retrieve the annual subscription price for any subscription group. Get the best per-month value with yearly billing.

Annual Price

12-month subscription cost.

Best Value

Maximum recurring savings.

365 Days

Full year of access.


Endpoint Overview

QUERY/graphql

Retrieve the 12-month subscription price for a specific group ID. Annual plans typically offer the best recurring value.

Authentication:Bearer Token
Required scopes:useradmin

Request Parameters

groupIdInt!Required

The ID of the subscription group to get pricing for.


GraphQL Query

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

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 getPackagePrice12($groupId: Int!) { getPackagePrice12(groupId: $groupId) { groupId price currency duration savings } }",
    "variables": {
      "groupId": 100
    }
  }'

Response

200Price Retrieved Successfully
{
  "data": {
    "getPackagePrice12": {
      "groupId": "100",
      "price": 79.99,
      "currency": "USD",
      "duration": 365,
      "savings": "33%",
      "monthlyEquivalent": 6.67
    }
  }
}


Popular Choice

Annual plans are the most popular option, offering significant savings while maintaining flexibility with yearly renewals.

One-Time Payment Option

For the ultimate value, check lifetime pricing - pay once, use forever.

View Lifetime Pricing