curl --request GET \
--url https://api.gamecart.gg/v1/seller/orders \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.gamecart.gg/v1/seller/orders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gamecart.gg/v1/seller/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gamecart.gg/v1/seller/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.gamecart.gg/v1/seller/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.gamecart.gg/v1/seller/orders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gamecart.gg/v1/seller/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"currentPage": 123,
"items": [
{
"buyer": {
"accountIdentifier": "Steve",
"billing": {
"addressLine1": "1 Market St",
"addressLine2": "<string>",
"city": "San Francisco",
"country": "US",
"phone": 14155550100,
"state": "CA",
"zipCode": 94105
},
"deliveryIdentityMode": "CHECKOUT_FIELD",
"discord": {
"userId": 80351110224678910,
"username": "steve"
},
"email": "[email protected]",
"locale": "en-US",
"name": "Steve"
},
"cancelledAt": "2022-03-10T16:15:50.000Z",
"checkoutFields": [
{
"identifier": "discord_tag",
"label": "Discord tag",
"value": "steve#0001"
}
],
"coupons": [
{
"code": "SAVE10",
"discountValue": 10,
"fixedValue": true
}
],
"createdAt": "2026-09-25T13:04:12.000Z",
"currency": "USD",
"customGateway": {
"id": "0f8fad5b-d9cb-469f-a165-70867728950e",
"name": "Bank transfer"
},
"deliveryStatus": "EXECUTED",
"discounts": [
{
"discountValue": 15,
"fixedValue": true,
"name": "Black Friday"
}
],
"externalPaymentId": "pi_3Q1x2y3z",
"gatewayType": "STRIPE",
"items": [
{
"effectivePrice": 10,
"expiresAt": "2026-10-25T13:05:00.000Z",
"id": 3121,
"name": "VIP rank",
"productId": 77,
"quantity": 2,
"unitPrice": 10,
"variables": [
{
"identifier": "color",
"name": "Color",
"value": "Red"
}
]
}
],
"manualAdjustment": 0,
"number": 105,
"orderId": "GC-7K9Q2X",
"paidAt": "2026-09-25T13:05:00.000Z",
"paymentStatus": "APPROVED",
"publicOrderUrl": "https://play.example.com/order/GC-7K9Q2X",
"subtotal": 20,
"total": 18,
"totalDiscount": 2
}
],
"pageSize": 123,
"totalItems": 123,
"totalPages": 123
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}List orders
Newest first. Filtering by email, accountIdentifier or q also requires orders:buyer:read. List items omit items, coupons, discounts, checkoutFields and buyer.billing.
curl --request GET \
--url https://api.gamecart.gg/v1/seller/orders \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.gamecart.gg/v1/seller/orders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gamecart.gg/v1/seller/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gamecart.gg/v1/seller/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.gamecart.gg/v1/seller/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.gamecart.gg/v1/seller/orders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gamecart.gg/v1/seller/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"currentPage": 123,
"items": [
{
"buyer": {
"accountIdentifier": "Steve",
"billing": {
"addressLine1": "1 Market St",
"addressLine2": "<string>",
"city": "San Francisco",
"country": "US",
"phone": 14155550100,
"state": "CA",
"zipCode": 94105
},
"deliveryIdentityMode": "CHECKOUT_FIELD",
"discord": {
"userId": 80351110224678910,
"username": "steve"
},
"email": "[email protected]",
"locale": "en-US",
"name": "Steve"
},
"cancelledAt": "2022-03-10T16:15:50.000Z",
"checkoutFields": [
{
"identifier": "discord_tag",
"label": "Discord tag",
"value": "steve#0001"
}
],
"coupons": [
{
"code": "SAVE10",
"discountValue": 10,
"fixedValue": true
}
],
"createdAt": "2026-09-25T13:04:12.000Z",
"currency": "USD",
"customGateway": {
"id": "0f8fad5b-d9cb-469f-a165-70867728950e",
"name": "Bank transfer"
},
"deliveryStatus": "EXECUTED",
"discounts": [
{
"discountValue": 15,
"fixedValue": true,
"name": "Black Friday"
}
],
"externalPaymentId": "pi_3Q1x2y3z",
"gatewayType": "STRIPE",
"items": [
{
"effectivePrice": 10,
"expiresAt": "2026-10-25T13:05:00.000Z",
"id": 3121,
"name": "VIP rank",
"productId": 77,
"quantity": 2,
"unitPrice": 10,
"variables": [
{
"identifier": "color",
"name": "Color",
"value": "Red"
}
]
}
],
"manualAdjustment": 0,
"number": 105,
"orderId": "GC-7K9Q2X",
"paidAt": "2026-09-25T13:05:00.000Z",
"paymentStatus": "APPROVED",
"publicOrderUrl": "https://play.example.com/order/GC-7K9Q2X",
"subtotal": 20,
"total": 18,
"totalDiscount": 2
}
],
"pageSize": 123,
"totalItems": 123,
"totalPages": 123
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}{
"code": "ORDER_NOT_FOUND",
"detail": "Order not found.",
"errors": [
{
"code": "validation.required",
"field": "content",
"message": "This field is required."
}
],
"instance": "/v1/seller/orders/GC-NOPE",
"requiredScope": [
"orders:read",
"orders:buyer:read"
],
"retryAfterSeconds": 17,
"status": 404,
"title": "Not Found",
"traceId": "ede70d1d-66d8-4af7-9a4e-a8775b047380",
"type": "about:blank"
}Authorizations
API token created in the dashboard under Integrations > API. Tokens start with gci_.
Query Parameters
Exact delivery identifier, case-insensitive. Requires orders:buyer:read.
Orders that used this coupon code.
Buyer e-mail, compared case-insensitively. Requires orders:buyer:read.
Created at or after this instant (ISO-8601, UTC).
"2022-03-10T16:15:50.000Z"
Gateways to include. Repeat the parameter for several.
PAYPAL, STRIPE, MERCADO_PAGO, PIX, MANUAL, CUSTOM, FREE Zero-based page.
Orders containing this product.
Free search over buyer name, e-mail, identifier and order number. Requires orders:buyer:read.
Items per page, 1 to 100.
Payment statuses to include. Repeat the parameter for several.
PENDING, APPROVED, REJECTED, CANCELLED, REFUNDED, DISPUTE Created before this instant (ISO-8601, UTC). Exclusive.
"2022-03-10T16:15:50.000Z"
Was this page helpful?
