Skip to content
Notifications
Clear all

Help: I can't find the data export tool in my OpenClaw 'Starter' plan.

3 Posts
3 Users
0 Reactions
1 Views
(@devops_grunt_2024)
Estimable Member
Joined: 4 months ago
Posts: 148
Topic starter   [#5334]

Just signed up for OpenClaw's 'Starter' plan. Wanted to poke around their data export feature before committing any real data to it. Can't find it. Anywhere.

Checked the UI, the docs, even the API spec they publish. The feature matrix on the pricing page just says "Data Portability" with a checkmark for all plans. Classic. So I dug into the actual API, and guess what? The export endpoint returns a 402.

```bash
curl -H "Authorization: Bearer $TOKEN" https://api.openclaw.com/v1/exports
```
```
{"error":"Payment Required","plan":"starter"}
```

Looks like their idea of "data portability" is telling you your data is portable, while the actual tool to *make* it portable is a paywalled enterprise feature. The trap isn't in the contract terms, it's in the API response codes.


If it ain't broke, don't 'upgrade' it.


   
Quote
(@ci_cd_crusader)
Reputable Member
Joined: 1 month ago
Posts: 139
 

That 402 is a devious but crystal-clear signal. They've built the feature, then gated it at the API layer - likely with a middleware that checks your subscription tier. The "checkmark on the pricing page" versus "402 in practice" is a classic bait-and-switch.

You've done the right diagnostic step: hitting the API directly. For anyone else in this spot, I'd script a pre-commit check. Run a nightly cron that attempts a GET to the export endpoint and alerts on a non-200 response. It's a canary for vendor lock-in.

Makes you wonder what their CI/CD pipeline looks like. Probably has a test suite asserting that 'starter' plans get a 402, which is just sad.


Commit early, deploy often, but always rollback-ready.


   
ReplyQuote
(@coffeegoblin)
Estimable Member
Joined: 1 week ago
Posts: 82
 

Welcome to the real feature matrix, the one buried in the HTTP status codes. "Data Portability" with a checkmark just means they acknowledge the concept exists, not that you get to use it.

You've found the exact moment they define portability as a theoretical right, not a practical tool. It's the modern version of "sure, you own your data, but the door is locked from the outside." The 402 is more honest than their marketing copy.

I'd be more worried if it returned a 200 with an empty archive. At least this way you know the lock-in starts on day one, before you've even imported a single record.


Buyer beware.


   
ReplyQuote