MANGOTEEPRINTS
  1. Products
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. Products

Get Product Detail

GET
https://v3.mangoteeprints.com/api/public/v1/products/{product_id}
Last modified:2025-08-22 08:08:26
Get product details by ID.
Required permission: read:products
Returns:
Product details including variations count

Request

Path 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/products/' \
--header 'X-API-Key;'

Responses

🟢200Successful Response
application/json
Body

Example
{
    "code": "SUCCESS",
    "data": {
        "attributes": {
            "gender": [
                "Hard Goods"
            ],
            "group": "Hat",
            "print_areas": [
                "center_hat",
                "left_hat",
                "right_hat",
                "back_hat"
            ]
        },
        "base_price": "0.00",
        "catalog_id": "1dde0324-58d6-48e3-8b0b-561d8a940fea",
        "catalog_name": "Unisex",
        "currency": "USD",
        "id": "4311bb76-00b2-497f-9d2b-3e0f106a68dd",
        "images": [],
        "is_active": true,
        "max_order_quantity": 100,
        "min_order_quantity": 1,
        "name": "Baseball Hat MM VN",
        "sku": "PROD-4311bb76-00b2-497f-9d2b-3e0f106a68dd",
        "variations_count": 160
    },
    "message": "Product retrieved successfully",
    "request_id": "7b6552f8-2b8f-4e12-8531-535b41c9289d",
    "status": true,
    "timestamp": "2025-08-20T10:13:22.111992"
}
🟠422Validation Error
Modified at 2025-08-22 08:08:26
Previous
Get Products
Next
Get Product Variations
Built with