Gift Categories

Get list of available Gift Categories

To get a list of available gift categories, use this endpoint:

POST  https://www.giftbasketsoverseas.com/api/v1/categories/get?country_iso_alpha2=US

with parameters:

Parameter NameDescription
country_iso_alpha22-Symbols Country ISO Code (Example: US)

Please note that a different endpoint is used for our API sandbox:

POST  https://www.giftbasketsoverseas.com/api/v1/sandbox/categories/get?country_iso_alpha2=US

Response example:

{
	"data":
   [
    {
			"id": 40,
			"code": "Tea-Coffee-Gifts",
			"name": "Tea Coffee Gifts",
			"type": "Category"
		},
		{
			"id": 15,
			"code": "Wedding-Gifts",
			"name": "Wedding Gifts",
			"type": "Occasion"
		},
		{
			"id": 57,
			"code": "Sukkot-Gifts",
			"name": "Sukkot Gifts",
			"type": "Holiday"
		},
		{
			"id": 44,
			"code": "Gifts-For-Men",
			"name": "Gifts For Men",
			"type": "Recipient"
		},
		{
			"id": 149,
			"code": "Virtual-Events-Gifts",
			"name": "Virtual Events Gifts",
			"type": "Theme"
		}
	]
}