PSN:B2B

PSN:B2B API

Automate your wholesale PlayStation Store gift card supply — list inventory, place orders, and fetch delivered codes programmatically across 12+ regions and 190+ denominations.

Quick start

  1. Register a free PSN:B2B business account.
  2. Solicita acceso al API enviando un ticket en la página de soporte. Selecciona el tema 'Solicitud de acceso API' desde tu cuenta registrada. La revisión KYC suele completarse en 1 día hábil.
  3. Receive your Bearer API key. Base URL: https://psnb2b.com/api/v1
  4. Top up balance with cryptocurrency (USDT, BTC, ETH, or LTC) to fund orders.
  5. Start calling endpoints — see the reference below.

Authentication

All requests must include an Authorization Bearer header. API keys are account-scoped and can be rotated on request. Authorization: Bearer <YOUR_API_KEY>

curl -sS "https://psnb2b.com/api/v1/inventory" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"

Core endpoints

GET/inventory

Lists live PSN gift card inventory across all 12 regions with current wholesale prices and stock availability.

GET/balance

Returns current account balance and applied volume-discount tier.

POST/orders

Creates a new wholesale order. Body: { region, denomination, quantity }. Returns order ID.

GET/orders/{id}

Polls order status. (pending, paid, delivered, failed)

GET/orders/{id}/codes

Downloads delivered PSN gift card codes for a completed order.

POST/claims

Files a code-support claim within the 7-day window for invalid, wrong-region, or failed codes. API partners receive priority review.

Rate limits

Default: 60 requests/minute per API key. Order placement is capped at 10 orders/minute to protect upstream inventory. Rate-limit headers X-RateLimit-Remaining and Retry-After are included on every response.

Webhooks

Register a webhook URL via support to receive asynchronous order.status_changed events. Retries use exponential backoff for 24 hours; HMAC-SHA256 signatures are included in the X-PSNB2B-Signature header for verification.

FAQ

How do I get API access for PSN:B2B?

Register a regular PSN:B2B business account and submit an API access request via the support page ticket system (select the "API Access Request" topic). API keys are issued manually after a brief KYC review, typically within one business day.

Is the PSN:B2B API free?

Yes. API usage itself has no extra fee — partners only pay for the wholesale gift cards they order. API-integrated partners also benefit from priority claim handling under the 7-day Code Support Policy.

What endpoints does the PSN:B2B API expose?

The REST API covers: inventory sync, balance check, order placement, order status polling, and download of delivered PSN codes. All responses are JSON and authenticated via a Bearer token.

Does the PSN:B2B API support webhooks?

Yes. Partners can register a webhook URL to receive order status changes (pending → paid → delivered → failed) without polling. Webhook retries use exponential backoff for 24 hours.