openapi: 3.0.3 info: title: TicketSpice API (Webconnex v2 Public) Coupons Health API version: '2.0' description: OpenAPI description of the TicketSpice programmable surface, which is the shared Webconnex v2 Public REST API (base https://api.webconnex.com/v2/public). TicketSpice is one of several Webconnex products (alongside RegFox, RedPodium, and GivingFuel) that share this API; the TicketSpice product is selected with a product=ticketspice query parameter and requests authenticate with an apiKey request header. Paths and methods are transcribed from the public Webconnex v2 reference and are real; a provisioned account API key (available on higher-tier plans) is required to exercise them. Request and response bodies are modeled at a summary level from the reference JSON envelope and are illustrative where the full field-level schema is not published. contact: name: API Evangelist email: kin@apievangelist.com license: name: Proprietary (Webconnex) url: https://www.webconnex.com/privacy-policy servers: - url: https://api.webconnex.com/v2/public description: Webconnex v2 Public API (shared across TicketSpice, RegFox, RedPodium, GivingFuel) security: - apiKeyAuth: [] tags: - name: Health paths: /ping: get: tags: - Health summary: Health check operationId: ping responses: '200': description: API is reachable and the API key is valid. content: application/json: schema: $ref: '#/components/schemas/Envelope' components: schemas: Envelope: type: object description: Standard Webconnex response envelope wrapping a single object. properties: responseCode: type: integer example: 200 data: type: object securitySchemes: apiKeyAuth: type: apiKey in: header name: apiKey description: Account API key generated from the TicketSpice/Webconnex dashboard.