title: API Reference

description: Complete reference for all Wontopos API endpoints.

API Reference

The Wontopos API is a RESTful API that uses JSON for request and response bodies. All requests must be authenticated.

Base URL

https://api.wontopos.com

All API paths are versioned. The current version is v1.

Versioning

VersionStatusEnd of life
v1Current

Include the version in the URL path: /v1/marketplace/apis.

Versioning policy

Breaking changes are introduced only in new major versions. Minor additions (new fields, new endpoints) are added to the current version.

Authentication header

All requests must include:

Authorization: Bearer <your_api_key_or_token>

See Authentication for details.

Request format

  • POST, PUT, and PATCH requests must include Content-Type: application/json
  • Query parameters use standard URL encoding
  • All timestamps are ISO 8601 in UTC

Content types

HeaderValue
Content-Typeapplication/json
Acceptapplication/json

Response format

Successful responses return a 2xx status code and a JSON body. List endpoints wrap results in a paginated envelope:

{
  "object": "list",
  "data": [...],
  "total": 142,
  "limit": 20,
  "offset": 0,
  "has_more": true
}

Pagination

All list endpoints support offset-based pagination.

ParameterTypeDefaultDescription
limitinteger20Number of results per page (max 100)
offsetinteger0Number of results to skip

HTTP methods

GET — Retrieve a resource or list of resources POST — Create a new resource PUT — Replace a resource PATCH — Update specific fields of a resource DELETE — Remove a resource

Resources

ResourceDescription
MarketplaceBrowse and search available APIs
SubscriptionsManage API subscriptions
UsageView usage metrics and reports
WebhooksConfigure real-time event notifications