Product Details (Must Read)

🚀 How to top up your Claude Pro subscription?

To top up, you must have an official Claude account. If you don't have one, you can register at Claude's official website (using a clean US IP is recommended). However, we do not recommend using brand-new accounts for top-ups; it is better to manually register a few accounts and warm them up for a while.

No need to share your account credentials. Simply provide your Claude ID to top up via our self-service portal. This is an official, secure channel; the entire process is self-service and requires no customer support intervention.

Stockpiling is not supported; please top up as soon as possible after purchase.

🐷 Important Notes

  • You can renew your Pro subscription even if it hasn't expired yet, but the new time will overwrite the remaining time rather than stack.
  • If you have outstanding overdue bills, the top-up will not be credited and will not be refunded.

💡 How to find your Claude Organization ID?

Visit claude.ai/settings and locate your Organization ID in the account information section. You only need to provide this ID when topping up.

⏱️ How long does the top-up take?

It usually takes 2-5 minutes to complete, and no more than 10 minutes in most cases.

💗 After-sales Policy

We provide a 30-day warranty against subscription drops. If the subscription drops, we will refund the prorated difference based on the remaining days. 99% of account bans are caused by issues with the original Claude account or the IP address itself, which are not covered by our warranty (please do not dispute this if your account gets banned. Read carefully and only place an order if you accept these terms).

🧡 Common causes for Claude account bans:

  • Frequent IP address changes
  • Using brand-new, freshly registered accounts
  • Using bulk-registered accounts
  • Using "dirty" shared IPs, especially cheap or overly popular VPN IPs that have already been blacklisted
  • Account sharing among multiple users
  • Requesting inappropriate content or violating Claude's official policies

We recommend using a US residential IP or a dedicated, clean IP.

🦞 How to integrate Claude Pro subscription into OpenClaw?

Claude has currently blocked openclaw, so this method is no longer supported.

1. Get your subscription token:

Requires Claude code to be installed on your device and connected to a Pro subscription. Run the following command in your terminal:

claude setup-token

After running this, you will see your Claude Token in the terminal. Copy and save the token starting with "sk-ant-".

Your OAuth token (valid for 1 year):                                                                                                 
                                                                                                                                     
sk-ant-oat02-O2mdLwJ_ufkoMo301...

2. Run the following in the terminal of your device where OpenClaw is installed:

openclaw models auth paste-token --provider anthropic

Paste your copied Claude Token after running the command and press Enter to submit.

3. Configure openclaw.json:

Refer to the following for the auth block configuration:

  "auth": {
    "profiles": {
      "anthropic:subscription": {
        "provider": "anthropic",
        "mode": "oauth",
        "email": "Enter your subscription email"
      },
      "anthropic:manual": {
        "provider": "anthropic",
        "mode": "token"
      }
    },
    "order": {
      "anthropic": [
        "anthropic:manual",
        "anthropic:subscription"
      ]
    }
  }

Refer to the following for the agents block configuration:

  "agents": {
    "defaults": {
      "model": {
        // Default model to use
        "primary": "anthropic/claude-sonnet-4-6",
				// Fallback model if the primary request fails
        "fallbacks": [
          "anthropic/claude-haiku-4-5-20251001"
        ]
      },
      // Models available for switching
      "models": {
        "anthropic/claude-haiku-4-5-20251001": {},
        "anthropic/claude-sonnet-4-6": {},
        "anthropic/claude-opus-4-6": {}
      }
    }
  }

Finally, restart OpenClaw:

openclaw gateway restart

You are now ready to use the service.