Main Page
/coupon
The main page has two tabs: Entrance Tickets and Coupons.
Both tab pages primarily display the popular items of each type of ticket, allowing users to click directly to use or purchase them.
Additionally, users can click on filter and search options to enter the search page and search for tickets of that category.
The main page data can be presented as expected by the developer by modifying the JSON response.
Entrance Tickets
Entrance Tickets have two additional buttons:
- Popular Exhibitions: This button takes users to the ticket list where they can select their preferred tickets.
- Popular Venues: This introduces various venues, their opening hours, and addresses. If the venue has tickets available for purchase, a link button will be provided.
Entrance Tickets - ticket_list
Define all entrance tickets in this list using ticket_list
. It includes detailed information about the tickets, which will be used on the ticket detail page.
Here, we will mainly introduce the fields needed for the list. The fields related to the detail page will be introduced in more detail in that page's documentation. A complete example is as follows:
{
"data": {
"ticket_list": [
{
"id": "t-1",
"name": "Taipei Fine Arts Museum",
"type": "Entrance Ticket",
"text": "Online ticket purchase is available only during operating hours.",
"price": 15,
"vip_text": "Exclusive for members",
"discount_text": "Citizen Discount",
"is_hot": true,
"img_url": "https://plus.unsplash.com/premium_photo-1686741733157-1d7863a7a04e?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"detail_price": ["Regular Ticket (Day Ticket): NT$30 / person", "Group Ticket (Day Ticket): NT$21 / person (minimum 20 people)"],
"address": {
"text": "No. 181, Sec. 3, Zhongshan N. Rd., Zhongshan Dist., Taipei City",
"map": "https://maps.app.goo.gl/sQKx4n3WctXuS5Bw8"
},
"activity_date": "2024/01/01~2024/12/31",
"ticket_illustrate": [
"Online ticket purchase is available only from 0:00-17:00 on open days.",
"Ticket Refund Policy: If unused, please complete the refund by 17:30 on the same day.",
"Closed on Mondays."
],
"spot_introduce": "Taipei Fine Arts Museum, established in 1983, was founded in response to the rising modern art movement and is the first public art museum in Taiwan.",
"instructions": ["Refundable under certain conditions before use", "Valid only on the day of purchase"],
},
{
"id": "t-2",
"name": "Taipei Zoo",
"type": "Entrance Ticket",
"text": "Online ticket purchase is available only during operating hours.",
"price": 60,
"vip_text": "Exclusive for members",
"discount_text": "",
"is_hot": true,
"img_url": "https://images.unsplash.com/photo-1534567153574-2b12153a87f0?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"detail_price": [
"Regular Ticket (Valid on the day of purchase): NT$100 / person",
"Taipei Citizen Ticket (Valid on the day of purchase, please show ID before use): NT$60 / person"
],
"address": {
"text": "No. 30, Sec. 2, Xinguang Rd., Wenshan Dist., Taipei City",
"map": "https://maps.app.goo.gl/ePr8n9JM5X4JFSvV8"
},
"activity_date": "2024/01/01~2024/12/31",
"ticket_illustrate": [
"Ticket sales hours: 9:00 AM to 4:00 PM.",
"Usage hours: 9:00 AM to 4:00 PM on the day of purchase.",
"No refunds after verification."
],
"spot_introduce": "Located at the terminus of the Taipei Metro's Wenhu Line, Taipei Zoo is an educational institution combining conservation, research, education, and recreation functions. It was certified as an environmental education facility in April 2012.",
"instructions": ["Refundable under certain conditions before use", "Valid only on the day of purchase"],
},
{
"id": "t-3",
"name": "Taipei Children's Amusement Park",
"type": "One-Day Fun Ticket",
"text": "Redeemable only during operating hours, the ticket includes entrance and unlimited rides on large amusement facilities numbered 1 to 13.",
"price": 200,
"vip_text": "",
"discount_text": "Citizen Discount",
"is_hot": false,
"img_url": "https://images.unsplash.com/photo-1575783970733-1aaedde1db74?q=80&w=2076&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"detail_price": ["One-Day Fun Ticket: NT$200 / person"],
"address": {
"text": "No. 55, Sec. 5, Chengde Rd., Shilin Dist., Taipei City",
"map": "https://maps.app.goo.gl/89CdbVCZH6rbfDaZ6"
},
"activity_date": "2024/01/01~2025/12/31",
"ticket_illustrate": [
"Redeemable only during operating hours, the ticket includes entrance and unlimited rides on large amusement facilities numbered 1 to 13."
],
"spot_introduce": "Taipei Children's Amusement Park (hereinafter referred to as the Children's Amusement Park) was formerly known as Taipei Children's Recreation Center located in Yuanshan.",
"instructions": ["Refundable under certain conditions before use", "Valid during the period/exchange time"],
}
],
}
}
Ticket
Field | Purpose | Example |
---|---|---|
id | Ticket ID | t-1 |
name | Ticket Name | Children's Amusement Park |
type | Ticket Type | One Day Fun Ticket |
text | Ticket Description | Limited to operation hours for exchange and use. The ticket includes park admission and unlimited rides on attractions numbered 1 to 13. |
price | Ticket Price | 200 |
vip_text | VIP-related Discount Text, Optional | Exclusive for members |
discount_text | General Discount Text, Optional | Citizen Discount |
is_hot | Is it a Hot Ticket | true |
img_url | Ticket Image | Image URL |
detail_price | Detailed Ticket Price | Please refer to Ticket Details |
address | Venue Address | Please refer to Ticket Details |
activity_date | Ticket Activity Period | Please refer to Ticket Details |
ticket_illustrate | Ticket Usage Instructions | Please refer to Ticket Details |
spot_introduce | Venue Introduction | Please refer to Ticket Details |
instructions | Ticket Usage Notes | Please refer to Ticket Details |
Coupons
Coupons - coupon_list
Define all coupons in the coupon_list
, which includes detailed information about the coupons to be used on the detailed coupon page. This section will mainly introduce the fields needed for the list; fields for the detailed page will be introduced in the respective document. A complete example is as follows:
{
"data": {
"coupon_list": [
{
"id": "c-1",
"name": "Guo Dong's Private Kitchen",
"text": "Powerful Collaboration - Guo Dong's Private Kitchen X State Banquet Chef",
"vip_text": "",
"discount_text": "Gift Dumplings",
"deadline": "2024/06/30",
"remaining": "",
"is_hot": true,
"img_url": "https://plus.unsplash.com/premium_photo-1673108852141-e8c3c22a4a22?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"activity_date": "2024/06/10~2024/08/10",
"rule": "Each member is limited to 1 piece",
"coupon_illustrate": "10% discount on accommodation, unlimited weekdays and weekends\nNotes:\nEach person can use it once a day",
"store_info": {
"img_url": "https://plus.unsplash.com/premium_photo-1661964205360-b0621b5a9366?q=80&w=2038&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"name": "Wotian Hotel",
"introduce": [
"Supported by 302 farmers' associations and 40 fishermen's associations across Taiwan,",
"nurturing a hotel with the theme style of farmers' and fishermen's associations.\nWe are willing to shoulder the innovation of the farmers' and fishermen's association culture, outline the local fashion style of Taiwan, \nand create a spiritual field to share with tourists."
],
"address": {
"text": "No. 127, Section 7, Zhongshan North Road, Shilin District, Taipei City",
"map": "https://maps.app.goo.gl/jN5AyYmkmDsmYX547"
}
}
},
{
"id": "c-2",
"name": "Aba Handmade Soap",
"text": "Spend 1000 get 100.",
"vip_text": "",
"discount_text": "Spend a thousand get a hundred",
"deadline": "2024/06/30",
"remaining": "158",
"is_hot": true,
"img_url": "https://images.unsplash.com/photo-1454873019514-eae2f086587a?q=80&w=2073&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"activity_date": "2024/06/10~2024/08/10",
"rule": "",
"coupon_illustrate": "10% discount on accommodation, unlimited weekdays and weekends\nNotes:\nEach person can use it once a day",
"store_info": {
"img_url": "https://plus.unsplash.com/premium_photo-1661964205360-b0621b5a9366?q=80&w=2038&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"name": "Aba Handmade Soap",
"introduce": [
"Supported by 302 farmers' associations and 40 fishermen's associations across Taiwan,",
"nurturing a hotel with the theme style of farmers' and fishermen's associations.\nWe are willing to shoulder the innovation of the farmers' and fishermen's association culture, outline the local fashion style of Taiwan, \nand create a spiritual field to share with tourists."
],
"address": {
"text": "No. 127, Section 7, Zhongshan North Road, Shilin District, Taipei City",
"map": "https://maps.app.goo.gl/jN5AyYmkmDsmYX547"
}
}
},
{
"id": "c-3",
"name": "Wotian Hotel",
"text": "Spend 1500 on dining and get a small portion of ginger stir-fried squid, spend 5000 and get a large portion\nNotes: Applicable to small dishes and individual orders, not applicable to set meals",
"vip_text": "",
"discount_text": "",
"deadline": "2024/12/31",
"remaining": "",
"is_hot": true,
"img_url": "https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"activity_date": "2024/06/10~2024/08/10",
"rule": "Each member is limited to 1 piece",
"coupon_illustrate": "10% discount on accommodation, unlimited weekdays and weekends\nNotes:\nEach person can use it once a day",
"store_info": {
"img_url": "https://plus.unsplash.com/premium_photo-1661964205360-b0621b5a9366?q=80&w=2038&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"name": "Wotian Hotel",
"introduce": [
"Supported by 302 farmers' associations and 40 fishermen's associations across Taiwan,",
"nurturing a hotel with the theme style of farmers' and fishermen's associations.\nWe are willing to shoulder the innovation of the farmers' and fishermen's association culture, outline the local fashion style of Taiwan, \nand create a spiritual field to share with tourists."
],
"address": {
"text": "No. 127, Section 7, Zhongshan North Road, Shilin District, Taipei City",
"map": "https://maps.app.goo.gl/jN5AyYmkmDsmYX547"
}
}
}
]
}
}
Field | Purpose | Example |
---|---|---|
id | Coupon ID | c-1 |
name | Coupon Name | Guo Dong's Private Kitchen |
text | Coupon Description | Powerful Collaboration - Guo Dong's Private Kitchen X State Banquet Chef |
vip_text | VIP-related Discount Text, Optional | Exclusive for members |
discount_text | General Discount Text, Optional | Citizen Discount |
deadline | Coupon Deadline | 2024/12/31 |
remaining | Remaining Coupons, Optional | 158 |
is_hot | Is it a Hot Coupon | true |
img_url | Coupon Image | Image URL |
activity_date | Coupon Activity Period | Please refer to Coupon Details |
rule | Coupon Usage Rules | Please refer to Coupon Details |
coupon_illustrate | Coupon Usage Instructions | Please refer to Coupon Details |
store_info | Coupon Store Information | Please refer to Coupon Details |