상품 목록

GET https://{market-domain}/v1.0/product/list

Query Parameters

Name
Type
Description

page_offset*

int64

페이지 번호 (default:1)

page_size*

int64

페이지 크기

is_auction

int8

0:전체, 1:일반, 2:옥션

category_id

int64

0:전체, 1 ~

sort_by

int8

0:등록순, 1:가격순

sort_order

bool

false:오름차순, true:내림차순

brand_filter

int8

1:여러개를 Array로 전달

section_id*

int8

0:ALL, 1,2,3,4.... : SectionID

{
    "return": 0,
    "message": "success",
    "value": {
        "page_offset": 3,
        "page_size": 8,
        "total_count": 11,
        "product_list": [
            {
                "product_id": 8,
                "product_status": 5,
                "start_date": "2022-06-01T01:00:00Z",
                "end_date": "2022-06-07T05:13:00Z",
                "brand_id": "1",
                "category_id": "1",
                "pack_id": 5,
                "is_effected": true,
                "payment_method": "1",
                "coin_id": 2,
                "current_price": 121.700679245,
                "is_auction": true,
                "inno_uid": "cIRm0...NXM",
                "is_mergeable" : true
            },
            {
                "product_id": 9,
                "product_status": 6,
                "start_date": "2022-06-01T01:00:00Z",
                "end_date": "2022-06-03T01:00:00Z",
                "brand_id": "1",
                "category_id": "1",
                "pack_id": 5,
                "is_effected": true,
                "payment_method": "1",
                "coin_id": 1,
                "current_price": 100.12345,
                "is_auction": true,
                "inno_uid": "INNO",
                "is_mergeable" : false
            }
        ]
    }
}

curl --location --request GET 'https://{market-domain}/v1.0/product/list?page_offset=3&page_size=8&is_auction=0&category_id=0&sort_by=0&sortorder=true&brand_filter=0&brand_filter=1&section_id=1'

Last updated