Getting Started
#Introduction
The Gamers Haven API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs
API Protocols
Our APIs follow the general principles of REST
-
1. We use standard
GET, POST
requests to communicate and HTTP response codes to show status and errors. - 2. You can expect all responses to be returned as JSON.
- 3. The API request should have a Content-Type of application/json.
- 4. All endpoints require authentication with your API Keys.
#Authentication
Retrieving your API Keys
Your API keys are very vital to making requests successfully to our servers. To get your keys follow the instruction
- 1. Log into your Gamers Haven dashboard.
- 2. Click Api Key from sidebar.
- 3. Select the API Keys open in the Api Key section of the menu to view and copy your keys.
Authorizing API calls
All API calls on Gamers Haven are authenticated. API requests made without authorization will fail with the status : failed.
To authorize API calls from your server, pass your YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
as a header of api request. This means passing an Authorization header with a value of PublicKey: YOUR_PUBLIC_KEY
and SecretKey: YOUR_SECRET_KEY
Category
#Get Category
To get all the category list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-category
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: category id
name: category name
icon: category icon
type: which type of category, 2 type available top_up,card
active_children: how many active product in category
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-category',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-category"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-category', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-category' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-category")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"categories": [
{
"id": 1,
"name": "Mobile Top-Up",
"icon": "fa-light fa-gamepad-modern",
"type": "top_up",
"active_children": 2
},
{
"id": 7,
"name": "Mobile Game Cards",
"icon": "fa-light fa-gamepad-modern",
"type": "card",
"active_children": 1
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
Top Up
#Get Top Ups
To get all the Top Up list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-topup
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Top up id
category_id: Top up Category id
name: Top up Name
slug: Top up Slug
status: Top Up Status. It Should be 1 For All Active Top Up
product_image: The Top Up Image Url Path
preview_image: The Top Up Preview Image Url Path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-topup',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-topup"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-topup', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-topup' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-topup")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"topUps": [
{
"id": 1,
"category_id": 1,
"name": "Clash of Clans Gold Pass",
"slug": "clash-of-clans-gold-pass",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/top-up/EiAsc6Zk2blOv4siqX0QJZoYBuaubp.webp",
"preview_image": "https://bugfinder.net/assets/upload/top-up/BmEkP7kGfAVotVNPArjD9nPtKnzJk7.webp"
},
{
"id": 2,
"category_id": 3,
"name": "Mobile Legends",
"slug": "mobile-legends",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/top-up/OcYJxBQHJc1JzOMNlOh78KKAEvr0oy.webp",
"preview_image": "https://bugfinder.net/assets/upload/top-up/r0oluppEiR4pPKsHfyCgannnt2jXz8.webp"
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Get Top Up By Category
To get all the Top Up list by category id follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-topup?category_id={category_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Top up id
category_id: Top up Category id
name: Top up Name
slug: Top up Slug
status: Top Up Status. It Should be 1 For All Active Top Up
product_image: The Top Up Image Url Path
preview_image: The Top Up Preview Image Url Path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-topup?category_id=1',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-topup?category_id=1"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-topup?category_id=1', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-topup?category_id=1' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-topup?category_id=1")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"topUps": [
{
"id": 1,
"category_id": 1,
"name": "Clash of Clans Gold Pass",
"slug": "clash-of-clans-gold-pass",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/top-up/EiAsc6Zk2blOv4siqX0QJZoYBuaubp.webp",
"preview_image": "https://bugfinder.net/assets/upload/top-up/BmEkP7kGfAVotVNPArjD9nPtKnzJk7.webp"
},
{
"id": 2,
"category_id": 1,
"name": "Mobile Legends",
"slug": "mobile-legends",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/top-up/OcYJxBQHJc1JzOMNlOh78KKAEvr0oy.webp",
"preview_image": "https://bugfinder.net/assets/upload/top-up/r0oluppEiR4pPKsHfyCgannnt2jXz8.webp"
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Top Up Details
To get Top Up all information follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/topup/details?top_up_id={top_up_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Top up id
category_id: Top up Category id
name: Top up Name
slug: Top up Slug
region: suppoerted region or country
note: any note for the top up
status: Top Up Status. It Should be 1 For All Active Top Up
instant_delivery: 1=> if Top Up send instantly to buyer
order_information: Information for Top Up order
description: Top Up Description
guide: Top Up Guide
total_review: How many review give by the buyer
avg_rating: The average review rating by the buyer
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/topup/details?top_up_id=5',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/details?top_up_id=5"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/topup/details?top_up_id=5', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/topup/details?top_up_id=5' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/details?top_up_id=5")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"details": {
"id": 5,
"category_id": 3,
"name": "Lords Mobile",
"slug": "lords-mobile",
"region": "Global",
"note": null,
"status": 1,
"instant_delivery": 1,
"order_information": {
"1": {
"field_value": "User ID",
"field_name": "User_Id",
"field_placeholder": "Enter User ID",
"field_note": "",
"field_type": "text"
},
"2": {
"field_value": "Zone ID",
"field_name": "Zone_Id",
"field_placeholder": "Enter Zone ID",
"field_note": "",
"field_type": "text"
}
},
"description": null,
"guide": null,
"total_review": 1,
"avg_rating": 3,
"sort_by": 3,
"deleted_at": null,
"created_at": "2024-08-17T05:02:23.000000Z",
"updated_at": "2024-10-31T14:08:50.000000Z",
"product_image": "https://bugfinder.net/assets/upload/top-up/OcYJxBQHJc1JzOMNlOh78KKAEvr0oy.webp",
"preview_image": "https://bugfinder.net/assets/upload/top-up/r0oluppEiR4pPKsHfyCgannnt2jXz8.webp"
}
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Get Top Up Services
To get all the Top Up Services list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/topup/services
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Service id
top_up_id: Top up id
name: Service Name
price: The price of service
discount: The discount amount of service
discount_type: The discount amount type. 1.percentage 2.flat
is_offered: The service is in campaign or not. 1=> yes, 0=> not
offered_sell: The campaign sell of the service
max_sell: The campaign max sell limit of the service
old_data: The actual data before campaign
campaign_data: The campaign data of the service
image_path: Service image path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/topup/services',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/services"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/topup/services', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/topup/services' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/services")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"services": [
{
"id": 1,
"top_up_id": 1,
"name": "Silver Pass",
"price": 4.99,
"discount": 2,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 10,
"sort_by": 1,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T04:58:27.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "http://localhost/G2BulP/assets/upload/top-up-service/iJlZ54zG6Q5M0DSvVoRBEzgpW1KDGT.webp"
},
{
"id": 2,
"top_up_id": 1,
"name": "Gold Pass",
"price": 6.99,
"discount": 10,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 10,
"sort_by": 2,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T04:59:50.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "http://localhost/G2BulP/assets/upload/top-up-service/HLiHgmDr0glbCDLoLpUyU3zrGHpnZk.webp"
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Get Services By Top Up
To get Services of the Top Up list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/topup/services?top_up_id={top_up_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Service id
top_up_id: Top up id
name: Service Name
price: The price of service
discount: The discount amount of service
discount_type: The discount amount type. 1.percentage 2.flat
is_offered: The service is in campaign or not. 1=> yes, 0=> not
offered_sell: The campaign sell of the service
max_sell: The campaign max sell limit of the service
old_data: The actual data before campaign
campaign_data: The campaign data of the service
image_path: Service image path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/topup/services?top_up_id=2',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/services?top_up_id=2"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/topup/services?top_up_id=2', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/topup/services?top_up_id=2' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/services?top_up_id=2")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"services": [
{
"id": 1,
"top_up_id": 1,
"name": "Silver Pass",
"price": 4.99,
"discount": 2,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 10,
"sort_by": 1,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T04:58:27.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "http://localhost/G2BulP/assets/upload/top-up-service/iJlZ54zG6Q5M0DSvVoRBEzgpW1KDGT.webp"
},
{
"id": 2,
"top_up_id": 1,
"name": "Gold Pass",
"price": 6.99,
"discount": 10,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 10,
"sort_by": 2,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T04:59:50.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "http://localhost/G2BulP/assets/upload/top-up-service/HLiHgmDr0glbCDLoLpUyU3zrGHpnZk.webp"
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Order Top Up
To order top up follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
POST
API URL: https://g2bulk.com/api/topup/order
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Body Params
topUpId* integer
The id of Top-Up, Must be in integer positive value
serviceId* integer
The id of Top-Up Service, Must be in integer positive value
User_Id* text
Order information of the top up. You get from Top Up Details endpoint. Pass the all order_information field_name here
Zone_Id* text
Order information of the top up. You get from Top Up Details endpoint. Pass the all order_information field_name here
var request = require('request');
var options = {
'method': 'POST',
'url': 'BASE_URL/topup/order',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
},
formData: {
'topUpId': '1',
'serviceId': '1',
'User_Id': '5878896',
'Zone_Id': 'Z5589656'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/order"
payload={'topUpId': '1',
'serviceId': '1',
'User_Id': '5878896',
'Zone_Id': 'Z5589656'}
files=[
]
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$options = [
'multipart' => [
[
'name' => 'topUpId',
'contents' => '1'
],
[
'name' => 'serviceId',
'contents' => '1'
],
[
'name' => 'User_Id',
'contents' => '5878896'
],
[
'name' => 'Zone_Id',
'contents' => 'Z5589656'
]
]];
$request = new Request('POST', 'BASE_URL/topup/order', $headers);
$res = $client->sendAsync($request, $options)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request POST 'BASE_URL/topup/order' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'topUpId="1"' \
--form 'serviceId="1"' \
--form 'User_Id="5878896"' \
--form 'Zone_Id="Z5589656"'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/order")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['topUpId', '1'],['serviceId', '1'],['User_Id', '5878896'],['Zone_Id', 'Z5589656']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": "Order has been placed successfully"
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": [
"The top up id field is required.",
]
}
1234567891011121314
#Get Top Up Reviews
To get Reviews of the Top Up list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/topup/review?top_up_id={top_up_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Review id
rating: Top up rating. min value 1 max value 5
comment: Product rating comment
user: Who give the rating
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/topup/review?top_up_id=3',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/review?top_up_id=3"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/topup/review?top_up_id=3', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/topup/review?top_up_id=3' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/review?top_up_id=3")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"reviews": [
{
"id": 6,
"rating": 5,
"comment": "I just love it! bought this Gift Card from here with instant delivery service with proper License support all times .",
"status": 1,
"created_at": "2024-08-27T04:27:42.000000Z",
"updated_at": "2024-08-27T04:27:42.000000Z",
"user": {
"id": 1,
"firstname": "Demo",
"lastname": "User",
"image": "https://bugfinder.net/assets/upload/userProfile/5OMAV9C6BJZqvcezrUpdppGBg1cYZX.webp",
"image_driver": "local",
"last-seen-activity": false,
"fullname": "Demo User"
}
}
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Add Top Up Reviews
To give a rating of top up follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
POST
API URL: https://g2bulk.com/api/topup/review
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Body Params
topUpId* integer
The id of Top-Up, Must be in integer positive value
rating* number
Must be in positive number between 1 to 5
comment* text
What was your experience
var request = require('request');
var options = {
'method': 'POST',
'url': 'BASE_URL/topup/review',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
},
formData: {
'topUpId': '1',
'rating': '5',
'comment': 'This is very good product'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/review"
payload={'topUpId': '1',
'rating': '5',
'comment': 'This is very good product'}
files=[
]
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$options = [
'multipart' => [
[
'name' => 'topUpId',
'contents' => '1'
],
[
'name' => 'rating',
'contents' => '5'
],
[
'name' => 'comment',
'contents' => 'This is very good product'
]
]];
$request = new Request('POST', 'BASE_URL/topup/review', $headers);
$res = $client->sendAsync($request, $options)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request POST 'BASE_URL/topup/review' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'topUpId="1"' \
--form 'rating="5"' \
--form 'comment="This is very good product"'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/review")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['topUpId', '1'],['rating', '5'],['comment', 'This is very good product']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": "Review Added Successfully"
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": [
"The top up id field is required.",
"The rating field is required.",
"The comment field is required."
]
}
1234567891011121314
Card
#Get Cards
To get all the Card list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-card
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Card id
category_id: Card Category id
name: Card Name
slug: Card Slug
status: Card Status. It Should be 1 For All Active Card
product_image: The Card Image Url Path
preview_image: The Card Preview Image Url Path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-card',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-card"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-card', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-card' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-card")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"cards": [
{
"id": 1,
"category_id": 9,
"name": "Google Play Gift Card (IN)",
"slug": "google-play-gift-card-in",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/card/aRMngyZ6boPsDJKoJJNOgbpCNyChz7.webp",
"preview_image": "https://bugfinder.net/assets/upload/card/UF9Ier7EWysDHtypBoCNm5uJaKgJbc.webp"
},
{
"id": 2,
"category_id": 10,
"name": "Apple Gift Card (UK)",
"slug": "apple-gift-card-uk",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/card/fz8MPDuqz2rTLH9V55eWn26H6GwteQ.webp",
"preview_image": "https://bugfinder.net/assets/upload/card/RjMHNjooxf6PUcRppjDaHTnllCTKqX.webp"
},
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Get Card By Category
To get all the Card list by category id follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-card?category_id={category_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Card up id
category_id: Card Category id
name: Card Name
slug: Card Slug
status: Card Status. It Should be 1 For All Active Top Up
product_image: The Card Image Url Path
preview_image: The Card Preview Image Url Path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-card?category_id=1',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-card?category_id=1"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-card?category_id=1', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-card?category_id=1' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-card?category_id=1")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"cards": [
{
"id": 2,
"category_id": 1,
"name": "Apple Gift Card (UK)",
"slug": "apple-gift-card-uk",
"status": 1,
"product_image": "https://bugfinder.net/assets/upload/card/fz8MPDuqz2rTLH9V55eWn26H6GwteQ.webp",
"preview_image": "https://bugfinder.net/assets/upload/card/RjMHNjooxf6PUcRppjDaHTnllCTKqX.webp"
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Card Details
To get Card all information follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/card/details?card_id={card_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Card up id
category_id: Card Category id
name: Card Name
slug: Card Slug
region: suppoerted region or country
note: any note for the Card
status: Card Status. It Should be 1 For All Active Card
instant_delivery: 1=> if Top Up send instantly to buyer
description: Card Description
guide: Card Guide
total_review: How many review give by the buyer
avg_rating: The average review rating by the buyer
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/card/details?card_id=1',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/card/details?card_id=1"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/card/details?card_id=1', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/card/details?card_id=1' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/card/details?card_id=1")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"details": {
"id": 1,
"category_id": 9,
"name": "Google Play Gift Card (IN)",
"slug": "google-play-gift-card-in",
"region": "India",
"note": "Google Play Gift Card (IN) sold by SEAGM is a region locked product.",
"status": 1,
"instant_delivery": 0,
"sort_by": 2,
"sell_count": 6900,
"total_review": 0,
"avg_rating": 0,
"deleted_at": null,
"created_at": "2024-08-17T05:17:52.000000Z",
"updated_at": "2024-11-11T11:59:14.000000Z",
"product_image": "https://bugfinder.net/assets/upload/top-up/OcYJxBQHJc1JzOMNlOh78KKAEvr0oy.webp",
"preview_image": "https://bugfinder.net/assets/upload/top-up/r0oluppEiR4pPKsHfyCgannnt2jXz8.webp"
}
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Get Card Services
To get all the Card Services list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/card/services
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Service id
card_id: Card id
name: Service Name
price: The price of service
discount: The discount amount of service
discount_type: The discount amount type. 1.percentage 2.flat
is_offered: The service is in campaign or not. 1=> yes, 0=> not
offered_sell: The campaign sell of the service
max_sell: The campaign max sell limit of the service
old_data: The actual data before campaign
campaign_data: The campaign data of the service
image_path: Service image path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/card/services',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/card/services"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/card/services', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/card/services' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/card/services")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"services": [
{
"id": 1,
"card_id": 1,
"name": "Gift Card 10 INR IN",
"price": 0.27,
"discount": 2,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 0,
"sort_by": 1,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T05:19:12.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "https://bugfinder.net/assets/upload/card-service/kTMWS2KWNVWh9GFAwgqlYJrMqhLxbg.webp"
},
{
"id": 2,
"card_id": 1,
"name": "Gift Card 25 INR IN",
"price": 0.42,
"discount": 2,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 0,
"sort_by": 2,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T05:20:36.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "https://bugfinder.net/assets/upload/card-service/jIWZPRKnzJ91k5KcI9SwKlWPsb8LKu.webp"
},
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Get Services By Card
To get Services of the Card list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/card/services?card_id={card_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Service id
card_id: Card id
name: Service Name
price: The price of service
discount: The discount amount of service
discount_type: The discount amount type. 1.percentage 2.flat
is_offered: The service is in campaign or not. 1=> yes, 0=> not
offered_sell: The campaign sell of the service
max_sell: The campaign max sell limit of the service
old_data: The actual data before campaign
campaign_data: The campaign data of the service
image_path: Service image path
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/topup/services?top_up_id=2',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/topup/services?top_up_id=2"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/topup/services?top_up_id=2', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/topup/services?top_up_id=2' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/topup/services?top_up_id=2")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"services": [
{
"id": 1,
"top_up_id": 1,
"name": "Silver Pass",
"price": 4.99,
"discount": 2,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 10,
"sort_by": 1,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T04:58:27.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "http://localhost/G2BulP/assets/upload/top-up-service/iJlZ54zG6Q5M0DSvVoRBEzgpW1KDGT.webp"
},
{
"id": 2,
"top_up_id": 1,
"name": "Gold Pass",
"price": 6.99,
"discount": 10,
"discount_type": "percentage",
"status": 1,
"is_offered": 0,
"offered_sell": 0,
"max_sell": 10,
"sort_by": 2,
"old_data": null,
"campaign_data": null,
"created_at": "2024-08-17T04:59:50.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"image_path": "http://localhost/G2BulP/assets/upload/top-up-service/HLiHgmDr0glbCDLoLpUyU3zrGHpnZk.webp"
}
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Order Card
To order card follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
POST
API URL: https://g2bulk.com/api/card/order
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Body Params
service_ids* array
The id of Card Service, Must be in array
quantities* array
The Quantity of each Service, Must be in array. Each quantity index value represent the same index number of service_ids quantity
var request = require('request');
var options = {
'method': 'POST',
'url': 'BASE_URL/card/order',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
},
formData: {
'service_ids[0]': '1',
'service_ids[1]': '2',
'quantities[0]': '3',
'quantities[1]': '2'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/card/order"
payload={'service_ids[0]': '1',
'service_ids[1]': '2',
'quantities[0]': '3',
'quantities[1]': '2'}
files=[
]
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$options = [
'multipart' => [
[
'name' => 'service_ids[0]',
'contents' => '1'
],
[
'name' => 'service_ids[1]',
'contents' => '2'
],
[
'name' => 'quantities[0]',
'contents' => '3'
],
[
'name' => 'quantities[1]',
'contents' => '2'
]
]];
$request = new Request('POST', 'BASE_URL/card/order', $headers);
$res = $client->sendAsync($request, $options)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request POST 'BASE_URL/card/order' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'service_ids[0]="1"' \
--form 'service_ids[1]="2"' \
--form 'quantities[0]="3"' \
--form 'quantities[1]="2"'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/card/order")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['service_ids[0]', '1'],['service_ids[1]', '2'],['quantities[0]', '3'],['quantities[1]', '2']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": "Order has been placed successfully"
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": [
"The service ids field is required.",
]
}
1234567891011121314
#Get Card Reviews
To get Reviews of the Card list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/card/review?card_id={card_id}
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: Review id
rating: Card rating. min value 1 max value 5
comment: Product rating comment
user: Who give the rating
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/card/review?card_id=4',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/card/review?card_id=4"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/card/review?card_id=4', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/card/review?card_id=4' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/card/review?card_id=4")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"reviews": [
{
"id": 6,
"rating": 5,
"comment": "I just love it! bought this Gift Card from here with instant delivery service with proper License support all times .",
"status": 1,
"created_at": "2024-08-27T04:27:42.000000Z",
"updated_at": "2024-08-27T04:27:42.000000Z",
"user": {
"id": 1,
"firstname": "Demo",
"lastname": "User",
"image": "https://bugfinder.net/assets/upload/userProfile/5OMAV9C6BJZqvcezrUpdppGBg1cYZX.webp",
"image_driver": "local",
"last-seen-activity": false,
"fullname": "Demo User"
}
}
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Add Card Reviews
To give a rating of card follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
POST
API URL: https://g2bulk.com/api/card/review
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Body Params
card_id* integer
The id of Card, Must be in integer positive value
rating* number
Must be in positive number between 1 to 5
comment* text
What was your experience
var request = require('request');
var options = {
'method': 'POST',
'url': 'BASE_URL/card/review',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
},
formData: {
'card_id': '1',
'rating': '5',
'comment': 'This is very good product'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/card/review"
payload={'card_id': '1',
'rating': '5',
'comment': 'This is very good product'}
files=[
]
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$options = [
'multipart' => [
[
'name' => 'card_id',
'contents' => '1'
],
[
'name' => 'rating',
'contents' => '5'
],
[
'name' => 'comment',
'contents' => 'This is very good product'
]
]];
$request = new Request('POST', 'BASE_URL/card/review', $headers);
$res = $client->sendAsync($request, $options)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request POST 'BASE_URL/card/review' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'card_id="1"' \
--form 'rating="5"' \
--form 'comment="This is very good product"'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/card/review")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['card_id', '1'],['rating', '5'],['comment', 'This is very good product']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": "Review Added Successfully"
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": [
"The top up id field is required.",
"The rating field is required.",
"The comment field is required."
]
}
1234567891011121314
Order List
#Top Up Order List
To get all the top up order list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-topup/orders
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
orderId: Unique order id
amount: Order total amount
status: The status of the order. 0=>initiate, 1=>completed,2=>refund,3=>stock_short
info: Top Up order information
order_details: array of object. every service details of order
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-topup/orders',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-topup/orders"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-topup/orders', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-topup/orders' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-topup/orders")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"orders": [
{
"orderId": "D22SQDJMNVFQ",
"amount": 1.72,
"status": 1,
"date": "2024-08-21T10:47:48.000000Z",
"info": {
"User_Id": {
"field": "User ID",
"value": "45987755"
},
"Zone_Id": {
"field": "Zone ID",
"value": "788996"
}
},
"order_details": [
{
"name": "Weekly Diamond Pass",
"image": "https://bugfinder.net/assets/upload/top-up-service/w4ELHIgIJjsrxJcajEempljPW5vQr6.webp",
"price": 1.72,
"qty": 1,
"topUp_name": "Lords Mobile"
}
]
},
{
"orderId": "V8VKN9MNRVHV",
"amount": 6.29,
"status": 0,
"date": "2024-08-21T10:41:01.000000Z",
"info": {
"Player_Tag": {
"field": "Player Tag",
"value": "America Sos"
}
},
"order_details": [
{
"name": "Gold Pass",
"image": "https://bugfinder.net/assets/upload/top-up-service/HLiHgmDr0glbCDLoLpUyU3zrGHpnZk.webp",
"price": 6.99,
"qty": 1,
"topUp_name": "Clash of Clans Gold Pass"
}
]
},
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
#Card Order List
To get all the card order list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-card/orders
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
orderId: Unique order id
amount: Order total amount
status: The status of the order. 0=>initiate, 1=>completed,2=>refund,3=>stock_short
order_details: array of object. every service details of order
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-card/orders',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-card/orders"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-card/orders', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-card/orders' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-card/orders")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"orders": [
{
"orderId": "9J6WTZ41PEE8",
"amount": 8.91,
"status": 1,
"date": "2024-08-22T09:22:27.000000Z",
"info": null,
"order_details": [
{
"name": "Gift Card 50",
"image": "https://bugfinder.net/assets/upload/card-service/MhcgeiUtonUondr7NUHfBrcl78Dkiu.webp",
"price": 9,
"qty": 1,
"topUp_name": "Roblox Game Cards (Global)",
"codes": [
"PB5125258"
]
}
]
},
{
"orderId": "7DACJ9FTZ5OS",
"amount": 55.76,
"status": 3,
"date": "2024-08-22T04:47:13.000000Z",
"info": null,
"order_details": [
{
"name": "Gift Card 25 INR IN",
"image": "https://bugfinder.net/assets/upload/card-service/jIWZPRKnzJ91k5KcI9SwKlWPsb8LKu.webp",
"price": 0.42,
"qty": 3,
"topUp_name": "Google Play Gift Card (IN)",
"codes": [
"AC2547885",
"UC202452"
]
},
{
"name": "Gift Cards 50 USD US",
"image": "https://bugfinder.net/assets/upload/card-service/QIwKz6F2eIdQFIjif92xUwgm8ao4IY.webp",
"price": 50,
"qty": 1,
"topUp_name": "iTunes Gift Card (US)",
"codes": [
"UC202452"
]
},
{
"name": "Gift Card 10",
"image": "https://bugfinder.net/assets/upload/card-service/bcSbbuiNZdGyN6l6a7Na9OKzvIKQ47.webp",
"price": 3,
"qty": 2,
"topUp_name": "Roblox Game Cards (Global)",
"codes": [
"UC8569985",
"UC874112525"
]
}
]
},
{
"orderId": "H2C21GC4F5HT",
"amount": 10,
"status": 3,
"date": "2024-08-21T13:59:01.000000Z",
"info": null,
"order_details": [
{
"name": "Gift Cards 5 USD US",
"image": "https://bugfinder.net/assets/upload/card-service/EhGqckWpYZ4vTtVIrsdjWiRQdyTBin.webp",
"price": 5,
"qty": 2,
"topUp_name": "iTunes Gift Card (US)",
"codes": [
"PB5125258"
]
}
]
},
...
]
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314
Campaign
#Get Campaign
To get campaign list follow the example code and be careful with the parameters.
Base Urlhttps://g2bulk.com/api/
HTTP Method:
GET
API URL: https://g2bulk.com/api/get-campaign
API Key:
Get YOUR_PUBLIC_KEY
and YOUR_SECRET_KEY
from the account page API Key
Response format: JSON
Response Body
id: campaign id
name: campaign name
start_date: when campaign start
end_date: when campaign end
topups: the list of top up services for campaign
cards: the list of card services for campaign
var request = require('request');
var options = {
'method': 'GET',
'url': 'BASE_URL/get-campaign',
'headers': {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
123456789101112131415
16
17181920212223242526
import requests
url = "BASE_URL/get-campaign"
payload={}
headers = {
'PublicKey': 'YOUR_PUBLIC_KEY',
'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
123456789101112131415
1617181920212223242526
?php
$client = new Client();
$headers = [
'PublicKey' => 'YOUR_PUBLIC_KEY',
'SecretKey' => 'YOUR_SECRET_KEY'
];
$request = new Request('GET', 'BASE_URL/get-campaign', $headers);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
123456789101112131415
1617181920212223242526
curl --location --request GET 'BASE_URL/get-campaign' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
123456789101112131415
1617181920212223242526
require "uri"
require "net/http"
url = URI("BASE_URL/get-campaign")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_PUBLIC_KEY"
response = http.request(request)
puts response.read_body
123456789101112131415
1617181920212223242526
{
"status": "success",
"message": {
"campaign": {
"id": 2,
"name": "Summer Sales",
"start_date": "2024-11-11",
"end_date": "2024-11-14",
"status": 1,
"created_at": "2024-11-11T12:26:11.000000Z",
"updated_at": "2024-11-11T13:03:09.000000Z",
"topups": [
{
"id": 5,
"top_up_id": 3,
"name": "Elite Pass (LV1-100)",
"price": 5,
"discount": 6,
"discount_type": "percentage",
"status": 1,
"offered_sell": 0,
"max_sell": 10,
"old_data": {
"price": 10.79,
"discount": 5,
"discount_type": "percentage"
},
"campaign_data": {
"price": "5",
"discount": "6",
"discount_type": "percentage",
"max_sell": "10"
},
"created_at": "2024-08-17T05:12:46.000000Z",
"updated_at": "2024-11-11T12:53:40.000000Z",
"image_path": "https://bugfinder.net/assets/upload/top-up-service/JWGuFtGCNYzgK4912HgC5oehFliVum.webp"
}
],
"cards": []
}
}
}
123456789101112131415
1617181920212223242526
{
"status": "failed",
"errors": "Something went wrong"
}
1234567891011121314