Get the authenticated seller's current listing status
sellers.statusReturns the authenticated user's current listing capabilities: whether they can create a new listing right now (subscription plan limit), whether they have a payment/shipment method configured (both required before products.create will succeed), the max images and price their plan allows, and their remaining AI credit balance (products.create consumes 2 credits per call). Call this BEFORE asking the user for photos or calling products.create, so you can tell the user upfront if something would block listing creation, instead of finding out only after a failed attempt. Read-only, no side effects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_price | Yes | ||
| max_images | Yes | ||
| max_products | Yes | ||
| has_payment_method | Yes | ||
| can_create_auctions | Yes | ||
| can_create_products | Yes | ||
| has_shipment_method | Yes | ||
| ai_credits_remaining | Yes |