Get checkout experience
curl --request GET \
--url https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}', 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.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}",
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.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}"
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.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}")
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{
"checkoutExperience": {
"id": "66b2f1c9e4b0a1d2c3f4a5b6",
"name": "Standard rates",
"active": true,
"createdAt": "2026-08-12T15:04:05.000Z",
"fulfillmentDelayDaysOverride": 2,
"methods": [
{
"id": "66b2f1c9e4b0a1d2c3f4a5c7",
"name": "Standard",
"description": "5-8 business days",
"type": "fixed",
"priceDisplay": "$5.99",
"rates": [
{
"price": "5.99",
"currency": "USD",
"conditions": [],
"enabled": true
}
]
},
{
"id": "66b2f1c9e4b0a1d2c3f4a5c8",
"name": "Ground",
"description": "Quoted live",
"type": "dynamic",
"priceDisplay": "DYNAMIC",
"fulfillmentDelayDaysOverride": 3,
"carrierServices": [
{
"carrier": "FedEx",
"service": "FEDEX_GROUND",
"enabled": true
}
]
}
]
}
}{
"type": "com.getredo.api:checkout/not-found",
"title": "Not found",
"detail": "Checkout experience not found"
}{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}Checkout Experiences
Get checkout experience
Get a checkout experience with the full configuration of each shipping method: prices and the cart conditions they apply to, carrier services, markups, price constraints, and fulfillment delays.
Requires the checkout_read scope.
GET
/
stores
/
{storeId}
/
checkout-experiences
/
{checkoutExperienceId}
Get checkout experience
curl --request GET \
--url https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}', 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.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}",
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.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}"
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.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getredo.com/v2.2/stores/{storeId}/checkout-experiences/{checkoutExperienceId}")
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{
"checkoutExperience": {
"id": "66b2f1c9e4b0a1d2c3f4a5b6",
"name": "Standard rates",
"active": true,
"createdAt": "2026-08-12T15:04:05.000Z",
"fulfillmentDelayDaysOverride": 2,
"methods": [
{
"id": "66b2f1c9e4b0a1d2c3f4a5c7",
"name": "Standard",
"description": "5-8 business days",
"type": "fixed",
"priceDisplay": "$5.99",
"rates": [
{
"price": "5.99",
"currency": "USD",
"conditions": [],
"enabled": true
}
]
},
{
"id": "66b2f1c9e4b0a1d2c3f4a5c8",
"name": "Ground",
"description": "Quoted live",
"type": "dynamic",
"priceDisplay": "DYNAMIC",
"fulfillmentDelayDaysOverride": 3,
"carrierServices": [
{
"carrier": "FedEx",
"service": "FEDEX_GROUND",
"enabled": true
}
]
}
]
}
}{
"type": "com.getredo.api:checkout/not-found",
"title": "Not found",
"detail": "Checkout experience not found"
}{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Store ID
Example:
"64e5a8a1af49a89df37e4ee7"
Checkout experience ID.
Example:
"66b2f1c9e4b0a1d2c3f4a5b6"
Response
Success
A checkout experience: a named group of shipping methods shown together at checkout. It does not decide who sees it — the checkout tree does. An experience can also group checkout widgets and a post-purchase upsell page; neither is covered here.
Show child attributes
Show child attributes
Was this page helpful?