Welcome

Base URL, authentication, and quickstart for PlusSuite API v3.

Welcome

Use PlusSuite API v3 to list services, place orders, and track order status.

Base URL

All endpoints are under:

https://plussuite.co/api

API version is path-based:

/v3

Example full URL:

https://plussuite.co/api/v3/services

Authentication

There are two keys.

  • Public API key (safe for client apps)

    • GET /v3/services: send as header public_key: ...

    • GET /v3/orders: send as query param api_key=... (public key)

  • Secret API key (server-side only)

    • POST /v3/order: send in JSON body as api_key

circle-exclamation

Headers

  • Always send: Accept: application/json

  • For JSON requests: Content-Type: application/json

Responses and errors

  • Many success responses include: status: true

  • Many error responses include: status: false and a message

  • Some errors return only a message

Quickstart

1

Fetch services

Pick a service id and confirm minimum / maximum.

Go to Service.

2

Place an order

Submit api_key, service, link, and quantity.

Go to Order.

3

Track orders

Fetch latest orders and read status, remains, and charge.

Go to Orders.

Endpoints

Summary

  • GET /v3/services

    • Auth: public_key header

    • Returns: services[]

  • POST /v3/order

    • Auth: JSON body api_key (secret)

    • Returns: order (your external_order_id)

  • GET /v3/orders

    • Auth: query api_key (public)

    • Returns: orders[]

Last updated