MANGOTEEPRINTS
  1. Catalog
MANGOTEEPRINTS
  • Overview
  • Change log
  • Production Lines
    • List Production Lines
      GET
  • Catalog
    • Get Catalogs
      GET
    • Get Catalog Detail
      GET
  • Products
    • Get Products
      GET
    • Get Product Detail
      GET
    • Get Product Variations
      GET
  • Orders
    • Create Order
      POST
    • List Orders
      GET
    • Get Order Detail
      GET
    • Update Order
      PUT
    • Delete Order
      DELETE
    • Cancel Order
      POST
  • Webhooks
    • Create Webhook
      POST
    • List Webhooks
      GET
    • Get Webhook
      GET
    • Update Webhook
      PUT
    • Delete Webhook
      DELETE
  • Schemas
    • Schemas
      • ShippingMethod Copy
      • CancelOrderData
      • CancelOrderResponse
      • CatalogsListData
      • CreateOrderResponse
      • FacilityType
      • GenericWebhookRequest
      • GetOrderResponse
      • GetProductionLineResponse
      • HTTPValidationError
      • InsertSchema
      • ListOrdersResponse
      • ListProductionLinesResponse
      • OrderCancelSchema
      • OrderCreateSchema
      • OrderItemResponseSchema
      • OrderItemSchema
      • OrderListData
      • OrderResponseSchema
      • OrderStatus
      • OrderUpdateSchema
      • PaginationInfo
      • PrintFileSchema
      • ProductionLineListData
      • ProductionLineSchema
      • ProductsListData
      • PublicBaseResponse
      • PublicCatalogDetailResponse
      • PublicCatalogResponse
      • PublicCatalogsListResponse
      • PublicProductDetailResponse
      • PublicProductResponse
      • PublicProductsListResponse
      • PublicVariationResponse
      • PublicVariationsListResponse
      • ShippingMethod
      • SpeedType
      • TrackingEventSchema
      • UpdateOrderResponse
      • ValidationError
      • VariationsListData
      • WebhookCreate
      • WebhookEvent
      • WebhookListResponse
      • WebhookUpdate
      • WebhookResponse
      • WebhookResponse
  1. Catalog

Get Catalogs

GET
https://v3.mangoteeprints.com/api/public/v1/catalog
Last modified:2025-08-22 08:07:53
Get list of product catalogs.
Required permission: read:catalog
Query parameters:
page: Page number (default: 1)
limit: Items per page (default: 20, max: 100)
name: Filter by catalog name (partial match)
Returns:
List of catalogs with pagination

Request

Query Params

Header Params

Request Code 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://v3.mangoteeprints.com/api/public/v1/catalog?page&limit&name' \
--header 'X-API-Key;'

Responses

🟢200Successful Response
application/json
Body

Example
{
    "code": "SUCCESS",
    "data": {
        "items": [
            {
                "description": "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.",
                "icon": "https://s3-hn-1.mangoteeprints.com/products/8c3f3c9f-6371-47d6-ba7e-59bf30544112.png",
                "id": "bcb203a5-2eb6-49d0-8fa1-2868a4cb5d10",
                "name": "Hard Goods",
                "products_count": 25
            },
            {
                "description": "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.",
                "icon": "https://s3-hn-1.mangoteeprints.com/products/383e4944-274c-4379-8a96-15b2d67bd6ed.png",
                "id": "cb5c4ae0-0b42-4df7-bc43-91c46b5cb9fc",
                "name": "Kids",
                "products_count": 0
            },
            {
                "description": "",
                "icon": "",
                "id": "6443caf6-c30b-4043-ab32-a1edca664591",
                "name": "Toddler",
                "products_count": 5
            },
            {
                "description": "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.",
                "icon": "https://s3-hn-1.mangoteeprints.com/products/4572ee3e-b068-46ff-a248-bcc6a2b56473.png",
                "id": "1dde0324-58d6-48e3-8b0b-561d8a940fea",
                "name": "Unisex",
                "products_count": 49
            },
            {
                "description": "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.",
                "icon": "https://s3-hn-1.mangoteeprints.com/products/aa493d21-137c-44ee-bf02-3badd629c2d5.png",
                "id": "060cc993-1c4d-4faa-be24-539f083c7cb9",
                "name": "Women",
                "products_count": 0
            },
            {
                "description": "Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.",
                "icon": "https://s3-hn-1.mangoteeprints.com/products/f666bfaa-e050-41af-ad05-8fd5eb7ced84.png",
                "id": "9a143b35-c6b3-4efe-acac-54903a2679a5",
                "name": "Youth",
                "products_count": 7
            }
        ],
        "pagination": {
            "limit": 10,
            "page": 1,
            "pages": 1,
            "total": 6
        }
    },
    "message": "Catalogs retrieved successfully",
    "request_id": "4cf59c81-e422-41c7-95e9-ea99c80dd83e",
    "status": true,
    "timestamp": "2025-08-20T09:36:32.640609"
}
🟠422Validation Error
Modified at 2025-08-22 08:07:53
Previous
List Production Lines
Next
Get Catalog Detail
Built with