GiftCard Calculator API Documentation

Welcome to the GiftCard Calculator API! This API allows you to programmatically access gift card options based on specific parameters like service cost, payment interval, and gift card type. Integrate our API into your applications to find the best gift card deals for digital subscriptions and services.

Table of Contents

Getting Started

Requesting an API Key

To use the GiftCard Calculator API, you need to obtain a unique API key. Please send an email to contact@giftcard-calculator.com with the subject line "API Key Request" and include the following information:

We will review your request and respond with your API key within 1-2 business days.

Authentication

All API requests must include your API key as a query parameter named api_key. Requests without a valid API key will be rejected.

API Overview

Base URL

All API requests are made to the following base URL:

https://www.giftcard-calculator.com/api.php

Endpoint

GET /api.php

Retrieve gift card options based on specified parameters.

Parameters

Required Parameters

Optional Parameters

Response Format

Responses are returned in JSON format.

Response Fields

Error Handling

If an error occurs, the API returns a JSON object with an error field containing the error message.

Error Response Format

{ "error": "Error message here." }

Examples

Example Request

Retrieve gift card options for paying for Spotify with a monthly cost of €9.99 using German gift cards.

Request:

GET https://www.giftcard-calculator.com/api.php?api_key=YOUR_API_KEY&giftcardType=spotify_de&serviceCost=9.99&paymentInterval=monthly&serviceName=Spotify&language=en_usd

Parameters:

Example Response

{ "giftcardType": "spotify_de", "serviceCost": 9.99, "paymentInterval": "monthly", "serviceName": "Spotify", "currency": "USD", "results": [ { "balanceLocal": 10, "priceEuro": 9.60, "link": "https://provider.com/buy/spotify_de_10", "image": "https://www.giftcard-calculator.com/images/spotify_de_10.png", "provider": "Kinguin", "months": 1, "remainingBalance": 0.01, "effectivePriceEuro": 9.60, "monthlyCost": "10.56" }, { "balanceLocal": 30, "priceEuro": 27.00, "link": "https://provider.com/buy/spotify_de_30", "image": "https://www.giftcard-calculator.com/images/spotify_de_30.png", "provider": "G2A", "months": 3, "remainingBalance": 0.03, "effectivePriceEuro": 27.00, "monthlyCost": "9.90" } // Additional results... ] }

Error Examples

Missing API Key

Request:

GET https://www.giftcard-calculator.com/api.php?giftcardType=spotify_de&serviceCost=9.99

Response:

{ "error": "API key is required." }

Invalid API Key

Request:

GET https://www.giftcard-calculator.com/api.php?api_key=INVALID_KEY&giftcardType=spotify_de&serviceCost=9.99

Response:

{ "error": "Invalid API key." }

Missing Required Parameter

Request:

GET https://www.giftcard-calculator.com/api.php?api_key=YOUR_API_KEY&serviceCost=9.99

Response:

{ "error": "Parameter \"giftcardType\" is required." }

Notes

Terms of Use

By using the GiftCard Calculator API, you agree to:

We reserve the right to suspend or terminate access for users who violate these terms.

Contact Us

If you have questions, need support, or wish to request additional features, please contact us:

We are here to help and typically respond within 1-2 business days.