The engine for smart shopping

The world's best brands use Turtles to power millions of magical shopping experience

CUSTOMERS

Turtles powers the world's best brands

$1,000,000+

of products sold

$2,200+

average order value

8,000+

Lego sets sold

65,000+

interested shoppers

130,000+

units liquidated

15,000+

sold in the first 30 days

$2,200,000+

of steaks sold

100,000+

interested shoppers

Products used

With Turtles, Versace’s bold vision found new audiences and new superfans
Click by click, Turtles helped the iconic toy brand LEGO find new customers online
Turtles helped Nike build momentum, and capture it, from court to checkout
Turtles grilled up record-breaking growth for Omaha Steaks, a 100-year-old brand
Scale

Built for growth,
and growing fast

Turtles quietly powers  some of the world’s most iconic brands. By fueling their growth, we’ve fueled our own — fast, global, and just getting started

$250,000,000+

Annual GMV on Turtles

27,000,000+

US shopper accounts

1,470,000,000+

Monthly server events

99.997%

Historical API uptime

Featured on Turtles

Solitaire Diamond Earrings

Tiffany & Co. — $2,500

Ninebot Max G2

Segway — $799

Supersonic Dryer

Dyson — $429

Searwood XL 600

Weber Grilling — $1,299

Picasso Visage No. 202

From Sotheby's — Priceless

Cruise Package for Two

Royal Caribbean — $2,500

Isabella Handbag

Fyn & Fia — $3,000

COMING SOON

Start building
with API access

For teams that want to move fast, scale smart, and own their stack

Developer-first

Everything you need to build and power any kind of experience you can imagine

Built for scale

Whether you're handling your first order or your millionth, we're here to help

1
constcreateOrder = async () => {
2
    const response = await fetch('https://api.turtles.com/v1/orders', {
3
        method: 'POST',
4
        headers: {
5
            'Content-Type': 'application/json',
6
            'Authorization': 'Bearer shell'
7
        },
8
        body: JSON.stringify({
9
            customer: {
10
                shipping_address: {
11
                    line1: '1 Turtles Lane',
12
                    city: 'Austin',
13
                       state: 'TX',
1
curl -X POST https://api.turtles.com/v1/orders \
2
-H "Content-Type: application/json" \
3
-H "Authorization: Bearer shell" \
4
-d '{
5
"customer": {
6
"shipping_address": {
7
"line1": "1 Turtles Lane",
8
"city": "Austin",
9
"state": "TX"
10
}
11
}
12
}'
13
1
import requests
2
def create_order():
3
url = 'https://api.turtles.com/v1/orders'
4
headers = {
5
'Content-Type': 'application/json',
6
'Authorization': 'Bearer shell'
7
}
8
payload = {
9
"customer": {
10
"shipping_address": {
11
"line1": "1 Turtles Lane",
12
"city": "Austin",
13
"state": "TX"