FastPOD
  1. Catalog
FastPOD
  • Getting Started
  • Orders
    • List Orders
      GET
    • Get Order
      GET
    • Create Order
      POST
    • Cancel Order
      POST
    • Estimate Order Price
      POST
    • Estimate Item Price
      POST
    • Update Order
      PUT
    • Update Status
      PUT
  • Catalog
    • List Catalogs
      GET
  • Webhook
    • List Webhooks
      GET
    • Subscribe
      POST
    • Unsubcribe
      DELETE
  1. Catalog

List Catalogs

GET
/v1/catalogs
The API responds with all the product SKUs

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.fastpod.net/v1/catalogs'

Responses

🟢200Fetch Catalogs
application/json
Body
current_page
integer 
required
data
array [object {9}] 
required
id
integer 
required
name
string 
required
sku
string 
required
color
string 
required
style
string 
required
size
string 
required
brand
string 
required
price
object 
required
availability
string 
required
in_stock (products are in stock and can be ordered), out_of_stock (the products are currently out of stock and cannot be ordered), discontinued (the print providers are currently not producing this product, and it cannot be ordered)
first_page_url
string 
required
from
integer 
required
last_page
integer 
required
last_page_url
string 
required
links
array [object {3}] 
required
url
string  | null 
required
label
string 
required
active
boolean 
required
next_page_url
string 
required
path
string 
required
per_page
integer 
required
prev_page_url
null 
required
to
integer 
required
total
integer 
required
Example
{
    "current_page": 1,
    "data": [
        {
            "id": 83,
            "name": "BELLA",
            "sku": "UABSTAQUBEXS",
            "color": "AQUA",
            "style": "3001",
            "size": "XS",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 84,
            "name": "BELLA",
            "sku": "UABSTAQUBSML",
            "color": "AQUA",
            "style": "3001",
            "size": "S",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 85,
            "name": "BELLA",
            "sku": "UABSTAQUBMDM",
            "color": "AQUA",
            "style": "3001",
            "size": "M",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 86,
            "name": "BELLA",
            "sku": "UABSTAQUBLRG",
            "color": "AQUA",
            "style": "3001",
            "size": "L",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 87,
            "name": "BELLA",
            "sku": "UABSTAQUBEXL",
            "color": "AQUA",
            "style": "3001",
            "size": "XL",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 88,
            "name": "BELLA",
            "sku": "UABSTAQUBXL2",
            "color": "AQUA",
            "style": "3001",
            "size": "2XL",
            "brand": "BELLA",
            "price": {
                "blank": 9.9,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 89,
            "name": "BELLA",
            "sku": "UABSTAQUBXL3",
            "color": "AQUA",
            "style": "3001",
            "size": "3XL",
            "brand": "BELLA",
            "price": {
                "blank": 10.4,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 90,
            "name": "BELLA",
            "sku": "UABSTARMGEXS",
            "color": "ARMY",
            "style": "3001",
            "size": "XS",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 91,
            "name": "BELLA",
            "sku": "UABSTARMGSML",
            "color": "ARMY",
            "style": "3001",
            "size": "S",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 92,
            "name": "BELLA",
            "sku": "UABSTARMGMDM",
            "color": "ARMY",
            "style": "3001",
            "size": "M",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 93,
            "name": "BELLA",
            "sku": "UABSTARMGLRG",
            "color": "ARMY",
            "style": "3001",
            "size": "L",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 94,
            "name": "BELLA",
            "sku": "UABSTARMGEXL",
            "color": "ARMY",
            "style": "3001",
            "size": "XL",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 95,
            "name": "BELLA",
            "sku": "UABSTARMGXL2",
            "color": "ARMY",
            "style": "3001",
            "size": "2XL",
            "brand": "BELLA",
            "price": {
                "blank": 9.9,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 96,
            "name": "BELLA",
            "sku": "UABSTARMGXL3",
            "color": "ARMY",
            "style": "3001",
            "size": "3XL",
            "brand": "BELLA",
            "price": {
                "blank": 10.4,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 97,
            "name": "BELLA",
            "sku": "UABSTASHHEXS",
            "color": "ASH",
            "style": "3001",
            "size": "XS",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 98,
            "name": "BELLA",
            "sku": "UABSTASHHSML",
            "color": "ASH",
            "style": "3001",
            "size": "S",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 99,
            "name": "BELLA",
            "sku": "UABSTASHHMDM",
            "color": "ASH",
            "style": "3001",
            "size": "M",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 100,
            "name": "BELLA",
            "sku": "UABSTASHHLRG",
            "color": "ASH",
            "style": "3001",
            "size": "L",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 101,
            "name": "BELLA",
            "sku": "UABSTASHHEXL",
            "color": "ASH",
            "style": "3001",
            "size": "XL",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 102,
            "name": "BELLA",
            "sku": "UABSTASHHXL2",
            "color": "ASH",
            "style": "3001",
            "size": "2XL",
            "brand": "BELLA",
            "price": {
                "blank": 9.9,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 103,
            "name": "BELLA",
            "sku": "UABSTASHHXL3",
            "color": "ASH",
            "style": "3001",
            "size": "3XL",
            "brand": "BELLA",
            "price": {
                "blank": 10.4,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 104,
            "name": "BELLA",
            "sku": "UABSTATHREXS",
            "color": "ATHLETIC HEATHER",
            "style": "3001",
            "size": "XS",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 105,
            "name": "BELLA",
            "sku": "UABSTATHRSML",
            "color": "ATHLETIC HEATHER",
            "style": "3001",
            "size": "S",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 106,
            "name": "BELLA",
            "sku": "UABSTATHRMDM",
            "color": "ATHLETIC HEATHER",
            "style": "3001",
            "size": "M",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        },
        {
            "id": 107,
            "name": "BELLA",
            "sku": "UABSTATHRLRG",
            "color": "ATHLETIC HEATHER",
            "style": "3001",
            "size": "L",
            "brand": "BELLA",
            "price": {
                "blank": 8.8,
                "print_areas": {
                    "front": 4,
                    "back": 4
                }
            },
            "availability": "in_stock"
        }
    ],
    "first_page_url": "http://api-test.fastpod.net/v1/catalogs?page=1",
    "from": 1,
    "last_page": 945,
    "last_page_url": "http://api-test.fastpod.net/v1/catalogs?page=945",
    "links": [
        {
            "url": null,
            "label": "« Previous",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=1",
            "label": "1",
            "active": true
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=2",
            "label": "2",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=3",
            "label": "3",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=4",
            "label": "4",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=5",
            "label": "5",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=6",
            "label": "6",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=7",
            "label": "7",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=8",
            "label": "8",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=9",
            "label": "9",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=10",
            "label": "10",
            "active": false
        },
        {
            "url": null,
            "label": "...",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=944",
            "label": "944",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=945",
            "label": "945",
            "active": false
        },
        {
            "url": "http://api-test.fastpod.net/v1/catalogs?page=2",
            "label": "Next »",
            "active": false
        }
    ],
    "next_page_url": "http://api-test.fastpod.net/v1/catalogs?page=2",
    "path": "http://api-test.fastpod.net/v1/catalogs",
    "per_page": 25,
    "prev_page_url": null,
    "to": 25,
    "total": 23621
}
Modified at 2023-12-12 07:12:31
Previous
Update Status
Next
Webhook
Built with