Get Package Price 6-Month API

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

Pricing

Get Package Price 6-Month API

Retrieve the semi-annual subscription price for any subscription group. Get pricing for 6-month billing cycles with significant savings.

Semi-Annual

6-month subscription cost.

Good Savings

Better value than monthly.

180 Days

Six months of access.


Endpoint Overview

QUERY/graphql

Retrieve the 6-month subscription price for a specific group ID. Semi-annual plans offer better value than monthly or quarterly options.

Authentication:Bearer Token
Required scopes:useradmin

Request Parameters

groupIdInt!Required

The ID of the subscription group to get pricing for.


GraphQL Query

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

Response

200Price Retrieved Successfully
{
  "data": {
    "getPackagePrice6": {
      "groupId": "100",
      "price": 44.99,
      "currency": "USD",
      "duration": 180,
      "savings": "25%"
    }
  }
}


Semi-Annual Value

6-month plans typically offer 20-30% savings compared to monthly billing, making them a popular choice for committed users.

Best Value Option

Annual plans offer the best per-month rates for regular users.

View Annual Pricing