3 Ways to Quickly Find Contract Details for Your Logz.io Account

Explore three quick methods to locate contract details in your Logz.io account, ensuring fast access to essential data on demand
The author of the article Chris Shuptrine
Jul 2025
3 Ways to Quickly Find Contract Details for Your Logz.io Account

When you need to check how many days are left on your Logz.io subscription, chasing down the information shouldn’t eat up your monitoring time. Contract size, expiration date, and plan tier live inside the platform, you just have to know where to look.

Below, we’ll walk through three quick ways to surface your contract details so you can answer usage questions, budget talks, or renewal planning in seconds.

Table of Contents

Use Logzio’s UI

Quickly see your costs and renewal dates in the Logz.io dashboard. A few clicks reveal every contract detail in under a minute.

1. Open the account settings

  • Sign in and look for the gear icon on the left edge of the screen.
  • Click the gear, then choose Account & settings.

2. Jump to Plan & Billing

  • A new page loads with several tabs.
  • Pick Plan & Billing. Logz.io labels this section “subscription and usage details.”

3. Read the Contract Details panel

  • The top half of this tab holds a box labeled Contract details.
  • Here you’ll see:
  • Contract ID
  • Start and end dates
  • Committed daily ingest (GB)
  • Retention period
  • Remaining credits, if any
  • Compare the numbers with your internal records to confirm everything matches.

4. Save a copy for your records

  • Still in Plan & Billing, click Download contract (or Export PDF, wording can vary).
  • The file saves locally so you can attach it to a ticket, share it with Finance, or keep it for later.

5. Request changes or ask support

  • Use the blue chat bubble at the bottom right to open a support ticket, or hit Contact support in the same tab.
  • Mention the Contract ID you just grabbed to speed things up.

Use Torii

Instead of combing through Logzio, pull every contract detail into Torii, a SaaS management platform. Torii delivers one dashboard for all your subscriptions, giving finance and IT a clear picture of spend and usage.

To surface your Logzio contract data inside Torii without hunting through multiple tabs, do the following:

1. Sign up for Torii

Visit Torii and request a complimentary 14-day proof-of-concept to see your own data in action.

2. Connect your expense accounts & contracts to Torii

Once the workspace is live, connect Torii to Coupa, QuickBooks, or any other expense system so subscription costs for Logzio import automatically. Drag and drop any Logzio contracts into Torii; its built-in AI lifts pricing and term details for you.

For step-by-step setup help, see the detailed Logzio integration instructions here.

3. Search for Logzio within Torii

Type “Logzio” into the global search bar at the top of the Torii dashboard. The resulting app page lists license counts, total spend, upcoming renewal dates, and any other contract information you’ve stored.

torii and logzio

Or, chat with Eko

Logzio information arrives in seconds through Torii’s AI assistant, Eko. Open the Eko widget at the bottom-right of your dashboard, type your question in plain language, and the details pop up in the chat window.

using eko to find contract details in logzio

Use Logzio’s API

Pull plan name, daily data quota, retention settings, and renewal dates without opening the Logz.io UI. Here’s the quick API-only path.

1. Create or reuse an API token that can read account info

  • The token needs the account_info_read permission or the broader account-management scope.
  • If you need a new one, run:
curl -s -X POST https://api.logz.io/v2/account-management/tokens \
-H 'Content-Type: application/json' \
-D '{
    "name":"contract-checker",
    "expireInDays":30,
    "permissions":["account_info_read"]
}'
  • Copy the value in the token field.

2. Call the account endpoint

curl -s https://api.logz.io/v2/account-management/account \
-H "X-API-TOKEN: $LOGZ_TOKEN"

Logz.io returns a JSON block packed with account details, and you’ll usually spot fields such as:

  • plan.name
  • metrics.ingestionGbPerDay
  • retentionDays
  • contractEndDate
  • accountId, displayName, and more for record keeping

3. Slice out just the fields you need

The full payload is wordy, so pipe it through jq to pare it down before handing it to another tool:

curl -s https://api.logz.io/v2/account-management/account \
-H "X-API-TOKEN: $LOGZ_TOKEN"  \
jq '{plan: .plan.name,
daily_quota_gb: .metrics.ingestionGbPerDay,
retention_days: .retentionDays,
contract_end: .contractEndDate}'

You now have a concise view of the core contract terms, making it easier to feed the data into dashboards or automation scripts.

4. (Optional) Repeat for each sub-account

If you manage multiple sub-accounts, start by listing them with a quick GET request that returns each id:

curl -s https://api.logz.io/v2/account-management/sub-accounts \
-H "X-API-TOKEN: $LOGZ_TOKEN"

Loop through the array of id values and hit

/v2/account-management/accounts/{subAccountId}

To pull the same contract fields for every branch.

That’s it. A handful of GET calls, one filter, and your contract data is ready for reporting or automation.

Torii for SaaS Management

If you’re ready to improve your SaaS management strategy, reach out. Torii’s SaaS Management Platform lets you:

  • Discover shadow apps: AI-driven monitoring constantly scans your environment and flags any unapproved software the instant seems.
  • Reduce spending: Cut waste by eliminating idle licenses and overlapping tools.
  • Automate onboarding and offboarding: Streamline routine IT workflows to save time and prevent errors.
  • Receive renewal reminders: Get timely alerts, so contract deadlines never sneak past you.

Torii provides an end-to-end SaaS Management Platform that gives Finance, IT, and Security a single source of truth. Learn more at Torii.

Frequently Asked Questions

Open Logz.io, click the gear icon, choose \"Account & settings\" then \"Plan & Billing.\" The Contract details box reveals ID, term dates, daily ingest, retention, and credits. Alternatively, query the /account API or search Logz.io in Torii for the same info.

Inside the Plan & Billing tab, click \"Download contract\" or \"Export PDF.\" Logz.io saves a full copy of your subscription terms locally so you can attach it to tickets, share with finance, or archive for future renewal conversations.

Yes. Create an API token with the account_info_read scope, then GET https://api.logz.io/v2/account-management/account. The JSON payload lists plan name, ingest quota, retention days, and contractEndDate, enabling automated reports or dashboards without opening the UI.

After connecting expense systems and contracts, Torii centralizes Logz.io license counts, total spend, and renewal dates on one dashboard. You can type \"Logzio\" in search or ask Eko in plain language, and the platform instantly surfaces the stored contract metrics.

The token must include the \"account_info_read\" permission or a broader account-management scope. Without that right, the /account endpoint will not return subscription data, so set the proper scope when you create or reuse the token.

Torii sends customizable renewal reminders before any contract end date. Once your Logz.io or other SaaS agreements sit in the platform, finance and IT receive timely alerts, reducing last-minute negotiations and ensuring budget talks happen well ahead of expiration.