Minted Connect
  1. Catalog
Minted Connect
E-Commerce API
  • Partner
  • E-Commerce API
  • Catalog
    • Products
      GET
    • Get Product
      GET
    • Prices
      GET
    • Categories
      GET
  • Customers
    • Create Customer
      POST
    • Update Customer
      PATCH
    • Remove Customer Id
      DELETE
    • Get Customer
      GET
  • Customer Address
    • Customer Address - List
      GET
    • Customer Address - Delete
      DELETE
    • Customer Address - Create (Shipping)
      POST
    • Customer Address - Create (Billing)
      POST
    • Customer Address - Create Multiple
      POST
  • Checkout
    • Get Basket
      GET
    • Get Incomplete Baskets
      GET
    • Add to Basket (New basket)
      POST
    • Add to Basket (Existing Basket)
      POST
    • Set Existing Address
      PATCH
    • Set Custom Address
      PATCH
    • Update Item
      PATCH
    • Delete Item
      DELETE
    • Clear Basket (Delete Items)
      DELETE
    • Payment Get All Types
      GET
    • Complete Basket
      PUT
    • Get Orders
      GET
    • Get Order
      POST
  • Legal
    • Legal Types
    • Partner Legal PDF
  1. Catalog

Get Product

Testing
Testing Env
https://api.staging.mintedconnect.com
Testing Env
https://api.staging.mintedconnect.com
GET
https://api.staging.mintedconnect.com
/partner/ecom/product
Last modified:2024-09-05 10:24:35
Maintainer:Not configured

Request

Authorization
Provide your encrypted digest scheme data in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Digest username=guest, realm="test", nonce="2", uri="/uri", response="***"
Query Params
sku
string 
optional
>= 1 characters
Example:
1
id
integer 
optional
Example:
10
Header Params
api-version
string 
optional
Example:
2
x-client-id
string 
required
Default value: web
Default:
web
Accept-Language
string 
optional
Default:
tr

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.staging.mintedconnect.com/partner/ecom/product?sku=1&id=10' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr'

Responses

🟢200OK
application/json
Body
data
object (Product) 
required
Partner Product Information
id
integer 
required
Product Id
name
string 
required
Product Name
text
string 
required
Product Description
barcode
string 
required
Product Barcode
sku
string 
required
Product SKU
stock
integer 
required
Stock of Product
currency_code
string 
required
Product Currency Code
list_price
number 
required
List Price of Product
sale_price
number 
required
Sale Price of Product
product_images
array[string]
required
Product Images
basecurrency
object (Base Product Currency) 
required
Minted Product Information
category
object (Category) 
required
Product Category
success
boolean 
required
code
integer 
required
message
string 
required
Example
{
    "data": {
        "id": 3000065,
        "name": "Minted 1 Gr 999,9 Külçe Altın (NadirGold)",
        "text": "Ürün açıklaması",
        "barcode": "MNTMNT0001",
        "sku": "MNT0001",
        "stock": 20,
        "currency_code": "TRY",
        "list_price": 2914.73,
        "sale_price": 2914.73,
        "product_images": [
            "https://minted-tr.mncdn.com/products/10/Z1P5eT1ggOvmgyS5bwFeW1qZwS41zj5FOL3gu4Fv.png",
            "https://minted-tr.mncdn.com/products/10/JxMzuWaZkljzWoVXzfKZPWYY2FeAU1TQY1sAtMnv.png",
            "https://minted-tr.mncdn.com/products/10/qzyXgt51f7ndySM5QpMQqyDN6QBZXqAomsyshp5r.png",
            "https://minted-tr.mncdn.com/products/10/sKZiiWqLA9PdejL5mG2sMWOyPJl7FWD95ILsYtx4.png"
        ],
        "basecurrency": {
            "id": 1000006,
            "name": "Physical Gold",
            "invoice_name": "Has Altın",
            "shortname": "minted-gold",
            "type": "metal",
            "metal_type": "gold",
            "code": "PAU",
            "symbol": "",
            "division_factor": 1,
            "symbol_position": "prefix",
            "decimals": 2,
            "color": null,
            "updated_at": "2024-07-23T14:02:08+03:00"
        },
        "category": {
            "id": 2,
            "parent_id": 1,
            "name": "Physical Gold",
            "slug": "/physical-gold",
            "order": 0,
            "active": true,
            "items": []
        }
    },
    "success": true,
    "code": 0,
    "message": ""
}
🟠401Unauthorized
🟠404Record Not Found
Previous
Products
Next
Prices
Built with