Skip to Content
REST APIPlan features

Plan features

Public read-only catalogue of Scrapewise plan tiers (STARTER, BASIC, PRO, BUSINESS, TEAM) and the features each one includes. Used by the marketing site (scrapewise.ai/pricing) and the in-portal upgrade page. No authentication required.

Endpoint summary

MethodPathAuth scope
GET/api/plan-featuresnone (public)

List plan features — GET /api/plan-features

curl https://portal.scrapewise.ai/api/scraper-api/api/plan-features

No Authorization header. The endpoint is in the permitAll list in SecurityConfig.

Response (200)

[ { "plan": "STARTER", "level": 0, "monthlyPrice": 0, "features": ["MANUAL_RUN"], "limits": { "MAX_SCRAPERS": 3, "MAX_GROUPS": 1 } }, { "plan": "BASIC", "level": 1, "monthlyPrice": 29, "features": ["MANUAL_RUN", "DAILY_SCHEDULER", "SITE_MAP"], "limits": { "MAX_SCRAPERS": 25, "MAX_GROUPS": 5 } } ]

Each entry carries:

FieldTypeDescription
planenumOne of STARTER, BASIC, PRO, BUSINESS, TEAM
levelintComparable rank — used for upgrade/downgrade direction
monthlyPricenumberEUR per month
featuresstring[]Feature flags this plan unlocks (MANUAL_RUN, DAILY_SCHEDULER, WEEKLY_SCHEDULER, SITE_MAP, DATA_SHARING, DATA_ENRICHMENT, TEXT_MATCHING, DATA_CHARTS, …)
limitsobjectNumeric caps (MAX_SCRAPERS, MAX_GROUPS, DATA_SHARING_LIMITS, …)

Errors

CodeMeaning
400N/A
401N/A (public)
403N/A (public)
404N/A
429Rate-limited (per-IP throttle on the public endpoint)
500Service failure

See also