API Documentation

Integrate SolSub directly into your applications with our simple and powerful API.

Check Match ID Status

There is only one main endpoint you need to verify the status of a Match ID.

Endpoint
GET https://api.solsub.online/check-match-id/
Request Parameters

Send these parameters as Query Parameters in your GET request.

Parameter Type Required Description
match_id String Yes The unique Match ID provided to the user (alphanumeric).
Request Headers
Header Type Required Description
api-key String Yes Your Cluster API Key for authentication.
Response Codes
Status Code Meaning Description
201 Created Active The Match ID is valid and the subscription is currently Active.
200 OK Inactive The Match ID exists but the subscription is Inactive (expired or not yet started).
400 Bad Request Error Missing required parameters (match_id or cluster_name) or invalid input format.
404 Not Found Not Found The specified Cluster Name or Match ID does not exist in our system.
Example Response (JSON)
{
    "success": true,
    "exists": true,
    "is_active": true,
    "status": "Paid Active",
    "cluster_name": "MyCluster",
    "timeline": "30 days",
    "created_on": "2023-10-25"
}
Example Request (Screenshots)

Here's how to configure the request in your API client:

Query Parameters:

Query Parameters Example

API Key Header:

API Key Header Example