Introduction
This documentation aims to provide all the information you need to work with our API.
<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>
Authenticating requests
This API is not authenticated.
Account Deletion
Request account deletion
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/delete-account" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reason\": \"No longer need the account\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/delete-account"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reason": "No longer need the account"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": null,
"message": "A 6-digit verification code has been sent to your email. Please verify to complete account deletion."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Verify and confirm account deletion
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/delete-account/verify" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"verification_code\": \"123456\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/delete-account/verify"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"verification_code": "123456"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": null,
"message": "Your account deletion has been confirmed and will be processed shortly."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Address
Get list of address by customer
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/addresses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/addresses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Create new address for customer
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/addresses" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"John Doe\",
\"email\": \"[email protected]\",
\"phone\": \"0123456789\",
\"country\": \"United States or US\",
\"state\": \"California\",
\"city\": \"Los Angeles\",
\"address\": \"123 Main St\",
\"is_default\": true,
\"zip_code\": \"90001\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/addresses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "John Doe",
"email": "[email protected]",
"phone": "0123456789",
"country": "United States or US",
"state": "California",
"city": "Los Angeles",
"address": "123 Main St",
"is_default": true,
"zip_code": "90001"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"id": 1,
"name": "John Doe",
"phone": "0123456789",
"email": "[email protected]",
"country": "United States",
"state": "California",
"city": "Los Angeles",
"address": "123 Main St",
"zip_code": "90001",
"is_default": true
},
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update an address
requires authentication
Example request:
curl --request PUT \
"https://farmart.botble.com/api/v1/ecommerce/addresses/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"John Doe\",
\"email\": \"[email protected]\",
\"phone\": \"0123456789\",
\"country\": \"United States or US\",
\"state\": \"California\",
\"city\": \"Los Angeles\",
\"address\": \"123 Main St\",
\"is_default\": true,
\"zip_code\": \"90001\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/addresses/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "John Doe",
"email": "[email protected]",
"phone": "0123456789",
"country": "United States or US",
"state": "California",
"city": "Los Angeles",
"address": "123 Main St",
"is_default": true,
"zip_code": "90001"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"id": 1,
"name": "John Doe",
"phone": "0123456789",
"email": "[email protected]",
"country": "United States",
"state": "California",
"city": "Los Angeles",
"address": "123 Main St",
"zip_code": "90001",
"is_default": true
},
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete an address
requires authentication
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/ecommerce/addresses/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/addresses/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": null,
"message": "Address deleted successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get list of available countries
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/countries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/countries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"name": "Vietnam",
"code": "VN"
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Ads
Get ads
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ads?keys[]=homepage-banner&keys[]=sidebar-banner" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"keys\": [
\"homepage-banner\",
\"sidebar-banner\"
]
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ads"
);
const params = {
"keys[0]": "homepage-banner",
"keys[1]": "sidebar-banner",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"keys": [
"homepage-banner",
"sidebar-banner"
]
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": false,
"data": [],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Authentication
Register
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"John\",
\"last_name\": \"Smith\",
\"name\": \"architecto\",
\"email\": \"[email protected]\",
\"password\": \"|]|{+-\",
\"phone\": \"architecto\",
\"password_confirmation\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "John",
"last_name": "Smith",
"name": "architecto",
"email": "[email protected]",
"password": "|]|{+-",
"phone": "architecto",
"password_confirmation": "architecto"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": null,
"message": "Registered successfully! We emailed you to verify your account!"
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name field is required."
],
"email": [
"The email field is required."
],
"password": [
"The password field is required."
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Login
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"[email protected]\",
\"password\": \"|]|{+-\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "[email protected]",
"password": "|]|{+-"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"token": "1|aF5s7p3xxx1lVL8hkSrPN72m4wPVpTvTs..."
},
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Check email existing or not
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/email/check" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"[email protected]\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/email/check"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "[email protected]"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"exists": true
},
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Forgot password
Send a reset link to the given user.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/password/forgot" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"[email protected]\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/password/forgot"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "[email protected]"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Resend email verification
Resend the email verification notification.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/resend-verify-account-email" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"[email protected]\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/resend-verify-account-email"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "[email protected]"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Logout
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/logout" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/logout"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Blog
Search post
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"q\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/search"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"q": "architecto"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"items": [
{
"id": 1,
"title": "Sample Post",
"slug": "sample-post",
"excerpt": "This is a sample post excerpt"
}
],
"query": "sample",
"count": 1
}
}
Example response (400):
{
"error": true,
"message": "No search result"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List posts
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/posts?per_page=16&page=16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/posts"
);
const params = {
"per_page": "16",
"page": "16",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"id": 1,
"title": "Sample Post",
"slug": "sample-post",
"excerpt": "This is a sample post excerpt",
"content": "Full post content here...",
"published_at": "2023-01-01T00:00:00.000000Z",
"author": {
"id": 1,
"name": "John Doe"
},
"categories": [],
"tags": []
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List categories
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/categories?per_page=16&page=16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/categories"
);
const params = {
"per_page": "16",
"page": "16",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"id": 1,
"name": "Technology",
"slug": "technology",
"description": "Latest tech news and updates",
"created_at": "2023-01-01T00:00:00.000000Z"
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List tags
Filters posts
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/posts/filters?page=16&per_page=16&search=architecto&after=architecto&author=architecto&author_exclude=architecto&before=architecto&exclude=architecto&include=architecto&order=architecto&order_by=architecto&categories=architecto&categories_exclude=architecto&tags=architecto&tags_exclude=architecto&featured=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/posts/filters"
);
const params = {
"page": "16",
"per_page": "16",
"search": "architecto",
"after": "architecto",
"author": "architecto",
"author_exclude": "architecto",
"before": "architecto",
"exclude": "architecto",
"include": "architecto",
"order": "architecto",
"order_by": "architecto",
"categories": "architecto",
"categories_exclude": "architecto",
"tags": "architecto",
"tags_exclude": "architecto",
"featured": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": [],
"links": {
"first": "https://farmart.botble.com/api/v1/posts/filters?page=1",
"last": "https://farmart.botble.com/api/v1/posts/filters?page=1",
"prev": "https://farmart.botble.com/api/v1/posts/filters?page=15",
"next": null
},
"meta": {
"current_page": 16,
"from": null,
"last_page": 1,
"links": [
{
"url": "https://farmart.botble.com/api/v1/posts/filters?page=15",
"label": "« Previous",
"page": 15,
"active": false
},
{
"url": "https://farmart.botble.com/api/v1/posts/filters?page=1",
"label": "1",
"page": 1,
"active": false
},
{
"url": null,
"label": "Next »",
"page": null,
"active": false
}
],
"path": "https://farmart.botble.com/api/v1/posts/filters",
"per_page": 16,
"to": null,
"total": 0
},
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get post by slug
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/posts/architecto?slug=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/posts/architecto"
);
const params = {
"slug": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Filters categories
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/categories/filters?page=16&per_page=16&search=architecto&order=architecto&order_by=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/categories/filters"
);
const params = {
"page": "16",
"per_page": "16",
"search": "architecto",
"order": "architecto",
"order_by": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"id": 1,
"name": "Technology",
"slug": "technology",
"description": "Latest tech news and updates"
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get category by slug
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/categories/architecto?slug=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/categories/architecto"
);
const params = {
"slug": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Brands
Get list of brands
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/brands?brands=" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"is_featured\": false
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/brands"
);
const params = {
"brands": "",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"is_featured": false
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": [],
"links": {
"first": "https://farmart.botble.com/api/v1/ecommerce/brands?page=1",
"last": "https://farmart.botble.com/api/v1/ecommerce/brands?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": null,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"page": null,
"active": false
},
{
"url": "https://farmart.botble.com/api/v1/ecommerce/brands?page=1",
"label": "1",
"page": 1,
"active": true
},
{
"url": null,
"label": "Next »",
"page": null,
"active": false
}
],
"path": "https://farmart.botble.com/api/v1/ecommerce/brands",
"per_page": 16,
"to": null,
"total": 0
},
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get brand details by slug
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/brands/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/brands/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": ""
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get products by brand
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/brands/1/products" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/brands/1/products"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": [
{
"id": 52,
"slug": "cuisinart-chefs-classic-hard-anodized-digital",
"url": "https://farmart.botble.com/products/cuisinart-chefs-classic-hard-anodized-digital",
"name": "Cuisinart Chef’S Classic Hard-Anodized (Digital)",
"sku": "6Q-166-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 10,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 904.4,
"price_formatted": "$904.40",
"original_price": 1190,
"original_price_formatted": "$1,190.00",
"reviews_avg": 2.9,
"reviews_count": 10,
"images": [
"https://farmart.botble.com/storage/products/52.jpg",
"https://farmart.botble.com/storage/products/52-1.jpg",
"https://farmart.botble.com/storage/products/52-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/52-150x150.jpg",
"https://farmart.botble.com/storage/products/52-1-150x150.jpg",
"https://farmart.botble.com/storage/products/52-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/52.jpg",
"https://farmart.botble.com/storage/products/52-1.jpg",
"https://farmart.botble.com/storage/products/52-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/52-150x150.jpg",
"https://farmart.botble.com/storage/products/52-1-150x150.jpg",
"https://farmart.botble.com/storage/products/52-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/52-300x300.jpg",
"https://farmart.botble.com/storage/products/52-1-300x300.jpg",
"https://farmart.botble.com/storage/products/52-2-300x300.jpg"
]
},
"weight": 539,
"height": 15,
"wide": 16,
"length": 11,
"image_url": "https://farmart.botble.com/storage/products/52-150x150.jpg",
"product_options": [],
"store": {
"id": 5,
"slug": "roberts-store",
"name": "Robert’s Store"
}
},
{
"id": 53,
"slug": "corn-yellow-sweet",
"url": "https://farmart.botble.com/products/corn-yellow-sweet",
"name": "Corn, Yellow Sweet",
"sku": "U7-133-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 10,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 646.85,
"price_formatted": "$646.85",
"original_price": 654,
"original_price_formatted": "$654.00",
"reviews_avg": 2.86,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/53.jpg",
"https://farmart.botble.com/storage/products/53-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/53-150x150.jpg",
"https://farmart.botble.com/storage/products/53-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/53.jpg",
"https://farmart.botble.com/storage/products/53-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/53-150x150.jpg",
"https://farmart.botble.com/storage/products/53-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/53-300x300.jpg",
"https://farmart.botble.com/storage/products/53-1-300x300.jpg"
]
},
"weight": 556,
"height": 11,
"wide": 13,
"length": 11,
"image_url": "https://farmart.botble.com/storage/products/53-150x150.jpg",
"product_options": [],
"store": {
"id": 6,
"slug": "stouffer",
"name": "Stouffer"
}
},
{
"id": 54,
"slug": "hobnobs-the-nobbly-biscuit",
"url": "https://farmart.botble.com/products/hobnobs-the-nobbly-biscuit",
"name": "Hobnobs The Nobbly Biscuit",
"sku": "DQ-183",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 19,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 814,
"price_formatted": "$814.00",
"original_price": 979,
"original_price_formatted": "$979.00",
"reviews_avg": 4.13,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/54.jpg",
"https://farmart.botble.com/storage/products/54-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/54-150x150.jpg",
"https://farmart.botble.com/storage/products/54-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/54.jpg",
"https://farmart.botble.com/storage/products/54-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/54-150x150.jpg",
"https://farmart.botble.com/storage/products/54-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/54-300x300.jpg",
"https://farmart.botble.com/storage/products/54-1-300x300.jpg"
]
},
"weight": 820,
"height": 14,
"wide": 17,
"length": 17,
"image_url": "https://farmart.botble.com/storage/products/54-150x150.jpg",
"product_options": [],
"store": {
"id": 2,
"slug": "global-office",
"name": "Global Office"
}
},
{
"id": 55,
"slug": "honest-organic-still-lemonade",
"url": "https://farmart.botble.com/products/honest-organic-still-lemonade",
"name": "Honest Organic Still Lemonade",
"sku": "RX-200-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 10,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 639,
"price_formatted": "$639.00",
"original_price": 639,
"original_price_formatted": "$639.00",
"reviews_avg": 4.14,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/55.jpg",
"https://farmart.botble.com/storage/products/55-1.jpg",
"https://farmart.botble.com/storage/products/55-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/55-150x150.jpg",
"https://farmart.botble.com/storage/products/55-1-150x150.jpg",
"https://farmart.botble.com/storage/products/55-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/55.jpg",
"https://farmart.botble.com/storage/products/55-1.jpg",
"https://farmart.botble.com/storage/products/55-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/55-150x150.jpg",
"https://farmart.botble.com/storage/products/55-1-150x150.jpg",
"https://farmart.botble.com/storage/products/55-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/55-300x300.jpg",
"https://farmart.botble.com/storage/products/55-1-300x300.jpg",
"https://farmart.botble.com/storage/products/55-2-300x300.jpg"
]
},
"weight": 792,
"height": 18,
"wide": 19,
"length": 16,
"image_url": "https://farmart.botble.com/storage/products/55-150x150.jpg",
"product_options": [],
"store": {
"id": 1,
"slug": "gopro",
"name": "GoPro"
}
},
{
"id": 56,
"slug": "ice-becks-beer-350ml-x-24-pieces-digital",
"url": "https://farmart.botble.com/products/ice-becks-beer-350ml-x-24-pieces-digital",
"name": "Ice Beck’s Beer 350ml x 24 Pieces (Digital)",
"sku": "KD-159-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 16,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 893,
"price_formatted": "$893.00",
"original_price": 1175,
"original_price_formatted": "$1,175.00",
"reviews_avg": 2.71,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/56.jpg",
"https://farmart.botble.com/storage/products/56-1.jpg",
"https://farmart.botble.com/storage/products/56-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/56-150x150.jpg",
"https://farmart.botble.com/storage/products/56-1-150x150.jpg",
"https://farmart.botble.com/storage/products/56-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/56.jpg",
"https://farmart.botble.com/storage/products/56-1.jpg",
"https://farmart.botble.com/storage/products/56-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/56-150x150.jpg",
"https://farmart.botble.com/storage/products/56-1-150x150.jpg",
"https://farmart.botble.com/storage/products/56-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/56-300x300.jpg",
"https://farmart.botble.com/storage/products/56-1-300x300.jpg",
"https://farmart.botble.com/storage/products/56-2-300x300.jpg"
]
},
"weight": 556,
"height": 12,
"wide": 19,
"length": 17,
"image_url": "https://farmart.botble.com/storage/products/56-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 57,
"slug": "iceland-6-hot-cross-buns",
"url": "https://farmart.botble.com/products/iceland-6-hot-cross-buns",
"name": "Iceland 6 Hot Cross Buns",
"sku": "9E-144",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 13,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 966,
"price_formatted": "$966.00",
"original_price": 1026,
"original_price_formatted": "$1,026.00",
"reviews_avg": 3.13,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/57.jpg",
"https://farmart.botble.com/storage/products/57-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/57-150x150.jpg",
"https://farmart.botble.com/storage/products/57-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/57.jpg",
"https://farmart.botble.com/storage/products/57-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/57-150x150.jpg",
"https://farmart.botble.com/storage/products/57-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/57-300x300.jpg",
"https://farmart.botble.com/storage/products/57-1-300x300.jpg"
]
},
"weight": 500,
"height": 12,
"wide": 13,
"length": 17,
"image_url": "https://farmart.botble.com/storage/products/57-150x150.jpg",
"product_options": [],
"store": {
"id": 5,
"slug": "roberts-store",
"name": "Robert’s Store"
}
},
{
"id": 58,
"slug": "iceland-luxury-4-panini-rolls",
"url": "https://farmart.botble.com/products/iceland-luxury-4-panini-rolls",
"name": "Iceland Luxury 4 Panini Rolls",
"sku": "8G-101-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 12,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1069,
"price_formatted": "$1,069.00",
"original_price": 1069,
"original_price_formatted": "$1,069.00",
"reviews_avg": 2.38,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/58.jpg",
"https://farmart.botble.com/storage/products/58-1.jpg",
"https://farmart.botble.com/storage/products/58-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/58-150x150.jpg",
"https://farmart.botble.com/storage/products/58-1-150x150.jpg",
"https://farmart.botble.com/storage/products/58-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/58.jpg",
"https://farmart.botble.com/storage/products/58-1.jpg",
"https://farmart.botble.com/storage/products/58-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/58-150x150.jpg",
"https://farmart.botble.com/storage/products/58-1-150x150.jpg",
"https://farmart.botble.com/storage/products/58-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/58-300x300.jpg",
"https://farmart.botble.com/storage/products/58-1-300x300.jpg",
"https://farmart.botble.com/storage/products/58-2-300x300.jpg"
]
},
"weight": 780,
"height": 19,
"wide": 16,
"length": 20,
"image_url": "https://farmart.botble.com/storage/products/58-150x150.jpg",
"product_options": [],
"store": {
"id": 3,
"slug": "young-shop",
"name": "Young Shop"
}
},
{
"id": 59,
"slug": "iceland-soft-scoop-vanilla",
"url": "https://farmart.botble.com/products/iceland-soft-scoop-vanilla",
"name": "Iceland Soft Scoop Vanilla",
"sku": "LI-195-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 19,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 853,
"price_formatted": "$853.00",
"original_price": 853,
"original_price_formatted": "$853.00",
"reviews_avg": 3,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/59.jpg",
"https://farmart.botble.com/storage/products/59-1.jpg",
"https://farmart.botble.com/storage/products/59-2.jpg",
"https://farmart.botble.com/storage/products/59-3.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/59-150x150.jpg",
"https://farmart.botble.com/storage/products/59-1-150x150.jpg",
"https://farmart.botble.com/storage/products/59-2-150x150.jpg",
"https://farmart.botble.com/storage/products/59-3-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/59.jpg",
"https://farmart.botble.com/storage/products/59-1.jpg",
"https://farmart.botble.com/storage/products/59-2.jpg",
"https://farmart.botble.com/storage/products/59-3.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/59-150x150.jpg",
"https://farmart.botble.com/storage/products/59-1-150x150.jpg",
"https://farmart.botble.com/storage/products/59-2-150x150.jpg",
"https://farmart.botble.com/storage/products/59-3-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/59-300x300.jpg",
"https://farmart.botble.com/storage/products/59-1-300x300.jpg",
"https://farmart.botble.com/storage/products/59-2-300x300.jpg",
"https://farmart.botble.com/storage/products/59-3-300x300.jpg"
]
},
"weight": 735,
"height": 16,
"wide": 18,
"length": 10,
"image_url": "https://farmart.botble.com/storage/products/59-150x150.jpg",
"product_options": [],
"store": {
"id": 4,
"slug": "global-store",
"name": "Global Store"
}
},
{
"id": 60,
"slug": "iceland-spaghetti-bolognese-digital",
"url": "https://farmart.botble.com/products/iceland-spaghetti-bolognese-digital",
"name": "Iceland Spaghetti Bolognese (Digital)",
"sku": "BG-105-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 18,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 878.4,
"price_formatted": "$878.40",
"original_price": 1220,
"original_price_formatted": "$1,220.00",
"reviews_avg": 1.86,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/60.jpg",
"https://farmart.botble.com/storage/products/60-1.jpg",
"https://farmart.botble.com/storage/products/60-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/60-150x150.jpg",
"https://farmart.botble.com/storage/products/60-1-150x150.jpg",
"https://farmart.botble.com/storage/products/60-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/60.jpg",
"https://farmart.botble.com/storage/products/60-1.jpg",
"https://farmart.botble.com/storage/products/60-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/60-150x150.jpg",
"https://farmart.botble.com/storage/products/60-1-150x150.jpg",
"https://farmart.botble.com/storage/products/60-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/60-300x300.jpg",
"https://farmart.botble.com/storage/products/60-1-300x300.jpg",
"https://farmart.botble.com/storage/products/60-2-300x300.jpg"
]
},
"weight": 609,
"height": 11,
"wide": 11,
"length": 15,
"image_url": "https://farmart.botble.com/storage/products/60-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 61,
"slug": "kelloggs-coco-pops-cereal",
"url": "https://farmart.botble.com/products/kelloggs-coco-pops-cereal",
"name": "Kellogg’s Coco Pops Cereal",
"sku": "QC-101",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 714,
"price_formatted": "$714.00",
"original_price": 1107,
"original_price_formatted": "$1,107.00",
"reviews_avg": 3.38,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/61.jpg",
"https://farmart.botble.com/storage/products/61-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/61-150x150.jpg",
"https://farmart.botble.com/storage/products/61-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/61.jpg",
"https://farmart.botble.com/storage/products/61-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/61-150x150.jpg",
"https://farmart.botble.com/storage/products/61-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/61-300x300.jpg",
"https://farmart.botble.com/storage/products/61-1-300x300.jpg"
]
},
"weight": 732,
"height": 14,
"wide": 14,
"length": 18,
"image_url": "https://farmart.botble.com/storage/products/61-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 62,
"slug": "kit-kat-chunky-milk-chocolate",
"url": "https://farmart.botble.com/products/kit-kat-chunky-milk-chocolate",
"name": "Kit Kat Chunky Milk Chocolate",
"sku": "YV-170-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 20,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1224,
"price_formatted": "$1,224.00",
"original_price": 1224,
"original_price_formatted": "$1,224.00",
"reviews_avg": 3.33,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/62.jpg",
"https://farmart.botble.com/storage/products/62-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/62-150x150.jpg",
"https://farmart.botble.com/storage/products/62-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/62.jpg",
"https://farmart.botble.com/storage/products/62-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/62-150x150.jpg",
"https://farmart.botble.com/storage/products/62-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/62-300x300.jpg",
"https://farmart.botble.com/storage/products/62-1-300x300.jpg"
]
},
"weight": 622,
"height": 19,
"wide": 18,
"length": 18,
"image_url": "https://farmart.botble.com/storage/products/62-150x150.jpg",
"product_options": [],
"store": {
"id": 6,
"slug": "stouffer",
"name": "Stouffer"
}
},
{
"id": 63,
"slug": "large-green-bell-pepper",
"url": "https://farmart.botble.com/products/large-green-bell-pepper",
"name": "Large Green Bell Pepper",
"sku": "06-100-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 19,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1130,
"price_formatted": "$1,130.00",
"original_price": 1130,
"original_price_formatted": "$1,130.00",
"reviews_avg": 2.56,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/63.jpg",
"https://farmart.botble.com/storage/products/63-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/63-150x150.jpg",
"https://farmart.botble.com/storage/products/63-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/63.jpg",
"https://farmart.botble.com/storage/products/63-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/63-150x150.jpg",
"https://farmart.botble.com/storage/products/63-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/63-300x300.jpg",
"https://farmart.botble.com/storage/products/63-1-300x300.jpg"
]
},
"weight": 514,
"height": 12,
"wide": 15,
"length": 14,
"image_url": "https://farmart.botble.com/storage/products/63-150x150.jpg",
"product_options": [],
"store": {
"id": 5,
"slug": "roberts-store",
"name": "Robert’s Store"
}
},
{
"id": 64,
"slug": "pice-94w-beasley-journal-digital",
"url": "https://farmart.botble.com/products/pice-94w-beasley-journal-digital",
"name": "Pice 94w Beasley Journal (Digital)",
"sku": "NA-159-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 19,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 736.4,
"price_formatted": "$736.40",
"original_price": 1052,
"original_price_formatted": "$1,052.00",
"reviews_avg": 2.6,
"reviews_count": 10,
"images": [
"https://farmart.botble.com/storage/products/64.jpg",
"https://farmart.botble.com/storage/products/64-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/64-150x150.jpg",
"https://farmart.botble.com/storage/products/64-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/64.jpg",
"https://farmart.botble.com/storage/products/64-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/64-150x150.jpg",
"https://farmart.botble.com/storage/products/64-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/64-300x300.jpg",
"https://farmart.botble.com/storage/products/64-1-300x300.jpg"
]
},
"weight": 805,
"height": 14,
"wide": 13,
"length": 14,
"image_url": "https://farmart.botble.com/storage/products/64-150x150.jpg",
"product_options": [],
"store": {
"id": 1,
"slug": "gopro",
"name": "GoPro"
}
},
{
"id": 65,
"slug": "province-piece-glass-drinking-glass",
"url": "https://farmart.botble.com/products/province-piece-glass-drinking-glass",
"name": "Province Piece Glass Drinking Glass",
"sku": "EA-200-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1138,
"price_formatted": "$1,138.00",
"original_price": 1138,
"original_price_formatted": "$1,138.00",
"reviews_avg": 2.8,
"reviews_count": 5,
"images": [
"https://farmart.botble.com/storage/products/65.jpg",
"https://farmart.botble.com/storage/products/65-1.jpg",
"https://farmart.botble.com/storage/products/65-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/65-150x150.jpg",
"https://farmart.botble.com/storage/products/65-1-150x150.jpg",
"https://farmart.botble.com/storage/products/65-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/65.jpg",
"https://farmart.botble.com/storage/products/65-1.jpg",
"https://farmart.botble.com/storage/products/65-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/65-150x150.jpg",
"https://farmart.botble.com/storage/products/65-1-150x150.jpg",
"https://farmart.botble.com/storage/products/65-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/65-300x300.jpg",
"https://farmart.botble.com/storage/products/65-1-300x300.jpg",
"https://farmart.botble.com/storage/products/65-2-300x300.jpg"
]
},
"weight": 826,
"height": 16,
"wide": 12,
"length": 16,
"image_url": "https://farmart.botble.com/storage/products/65-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 30,
"slug": "bar-s-classic-bun-length-franks",
"url": "https://farmart.botble.com/products/bar-s-classic-bun-length-franks",
"name": "Bar S – Classic Bun Length Franks",
"sku": "PA-128-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 14,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 742,
"price_formatted": "$742.00",
"original_price": 742,
"original_price_formatted": "$742.00",
"reviews_avg": 3.44,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/30.jpg",
"https://farmart.botble.com/storage/products/30-1.jpg",
"https://farmart.botble.com/storage/products/30-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/30-150x150.jpg",
"https://farmart.botble.com/storage/products/30-1-150x150.jpg",
"https://farmart.botble.com/storage/products/30-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/30.jpg",
"https://farmart.botble.com/storage/products/30-1.jpg",
"https://farmart.botble.com/storage/products/30-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/30-150x150.jpg",
"https://farmart.botble.com/storage/products/30-1-150x150.jpg",
"https://farmart.botble.com/storage/products/30-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/30-300x300.jpg",
"https://farmart.botble.com/storage/products/30-1-300x300.jpg",
"https://farmart.botble.com/storage/products/30-2-300x300.jpg"
]
},
"weight": 691,
"height": 16,
"wide": 12,
"length": 12,
"image_url": "https://farmart.botble.com/storage/products/30-150x150.jpg",
"product_options": [],
"store": {
"id": 2,
"slug": "global-office",
"name": "Global Office"
}
},
{
"id": 31,
"slug": "broccoli-crowns",
"url": "https://farmart.botble.com/products/broccoli-crowns",
"name": "Broccoli Crowns",
"sku": "2Q-100-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 17,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 418.56,
"price_formatted": "$418.56",
"original_price": 761,
"original_price_formatted": "$761.00",
"reviews_avg": 2.57,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/31.jpg",
"https://farmart.botble.com/storage/products/31-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/31-150x150.jpg",
"https://farmart.botble.com/storage/products/31-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/31.jpg",
"https://farmart.botble.com/storage/products/31-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/31-150x150.jpg",
"https://farmart.botble.com/storage/products/31-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/31-300x300.jpg",
"https://farmart.botble.com/storage/products/31-1-300x300.jpg"
]
},
"weight": 787,
"height": 19,
"wide": 20,
"length": 20,
"image_url": "https://farmart.botble.com/storage/products/31-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 32,
"slug": "slimming-world-vegan-mac-greens-digital",
"url": "https://farmart.botble.com/products/slimming-world-vegan-mac-greens-digital",
"name": "Slimming World Vegan Mac Greens (Digital)",
"sku": "QV-193-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 12,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 570.38,
"price_formatted": "$570.38",
"original_price": 722,
"original_price_formatted": "$722.00",
"reviews_avg": 2.29,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/32.jpg",
"https://farmart.botble.com/storage/products/32-1.jpg",
"https://farmart.botble.com/storage/products/32-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/32-150x150.jpg",
"https://farmart.botble.com/storage/products/32-1-150x150.jpg",
"https://farmart.botble.com/storage/products/32-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/32.jpg",
"https://farmart.botble.com/storage/products/32-1.jpg",
"https://farmart.botble.com/storage/products/32-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/32-150x150.jpg",
"https://farmart.botble.com/storage/products/32-1-150x150.jpg",
"https://farmart.botble.com/storage/products/32-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/32-300x300.jpg",
"https://farmart.botble.com/storage/products/32-1-300x300.jpg",
"https://farmart.botble.com/storage/products/32-2-300x300.jpg"
]
},
"weight": 703,
"height": 11,
"wide": 14,
"length": 13,
"image_url": "https://farmart.botble.com/storage/products/32-150x150.jpg",
"product_options": [],
"store": {
"id": 4,
"slug": "global-store",
"name": "Global Store"
}
},
{
"id": 33,
"slug": "haagen-dazs-salted-caramel",
"url": "https://farmart.botble.com/products/haagen-dazs-salted-caramel",
"name": "Häagen-Dazs Salted Caramel",
"sku": "GN-116",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 13,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 682,
"price_formatted": "$682.00",
"original_price": 902,
"original_price_formatted": "$902.00",
"reviews_avg": 3.3,
"reviews_count": 10,
"images": [
"https://farmart.botble.com/storage/products/33.jpg",
"https://farmart.botble.com/storage/products/33-1.jpg",
"https://farmart.botble.com/storage/products/33-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/33-150x150.jpg",
"https://farmart.botble.com/storage/products/33-1-150x150.jpg",
"https://farmart.botble.com/storage/products/33-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/33.jpg",
"https://farmart.botble.com/storage/products/33-1.jpg",
"https://farmart.botble.com/storage/products/33-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/33-150x150.jpg",
"https://farmart.botble.com/storage/products/33-1-150x150.jpg",
"https://farmart.botble.com/storage/products/33-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/33-300x300.jpg",
"https://farmart.botble.com/storage/products/33-1-300x300.jpg",
"https://farmart.botble.com/storage/products/33-2-300x300.jpg"
]
},
"weight": 817,
"height": 12,
"wide": 13,
"length": 18,
"image_url": "https://farmart.botble.com/storage/products/33-150x150.jpg",
"product_options": [],
"store": {
"id": 6,
"slug": "stouffer",
"name": "Stouffer"
}
},
{
"id": 34,
"slug": "iceland-3-solo-exotic-burst",
"url": "https://farmart.botble.com/products/iceland-3-solo-exotic-burst",
"name": "Iceland 3 Solo Exotic Burst",
"sku": "F5-138-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 15,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 542,
"price_formatted": "$542.00",
"original_price": 542,
"original_price_formatted": "$542.00",
"reviews_avg": 4.33,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/34.jpg",
"https://farmart.botble.com/storage/products/34-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/34-150x150.jpg",
"https://farmart.botble.com/storage/products/34-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/34.jpg",
"https://farmart.botble.com/storage/products/34-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/34-150x150.jpg",
"https://farmart.botble.com/storage/products/34-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/34-300x300.jpg",
"https://farmart.botble.com/storage/products/34-1-300x300.jpg"
]
},
"weight": 879,
"height": 14,
"wide": 17,
"length": 20,
"image_url": "https://farmart.botble.com/storage/products/34-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 35,
"slug": "extreme-budweiser-light-can",
"url": "https://farmart.botble.com/products/extreme-budweiser-light-can",
"name": "Extreme Budweiser Light Can",
"sku": "DQ-156",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 19,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 256,
"price_formatted": "$256.00",
"original_price": 687,
"original_price_formatted": "$687.00",
"reviews_avg": 3.29,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/35.jpg",
"https://farmart.botble.com/storage/products/35-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/35-150x150.jpg",
"https://farmart.botble.com/storage/products/35-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/35.jpg",
"https://farmart.botble.com/storage/products/35-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/35-150x150.jpg",
"https://farmart.botble.com/storage/products/35-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/35-300x300.jpg",
"https://farmart.botble.com/storage/products/35-1-300x300.jpg"
]
},
"weight": 703,
"height": 14,
"wide": 19,
"length": 14,
"image_url": "https://farmart.botble.com/storage/products/35-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 36,
"slug": "iceland-macaroni-cheese-traybake-digital",
"url": "https://farmart.botble.com/products/iceland-macaroni-cheese-traybake-digital",
"name": "Iceland Macaroni Cheese Traybake (Digital)",
"sku": "6E-184",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 18,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1141,
"price_formatted": "$1,141.00",
"original_price": 1175,
"original_price_formatted": "$1,175.00",
"reviews_avg": 2.67,
"reviews_count": 6,
"images": [
"https://farmart.botble.com/storage/products/36.jpg",
"https://farmart.botble.com/storage/products/36-1.jpg",
"https://farmart.botble.com/storage/products/36-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/36-150x150.jpg",
"https://farmart.botble.com/storage/products/36-1-150x150.jpg",
"https://farmart.botble.com/storage/products/36-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/36.jpg",
"https://farmart.botble.com/storage/products/36-1.jpg",
"https://farmart.botble.com/storage/products/36-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/36-150x150.jpg",
"https://farmart.botble.com/storage/products/36-1-150x150.jpg",
"https://farmart.botble.com/storage/products/36-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/36-300x300.jpg",
"https://farmart.botble.com/storage/products/36-1-300x300.jpg",
"https://farmart.botble.com/storage/products/36-2-300x300.jpg"
]
},
"weight": 773,
"height": 11,
"wide": 15,
"length": 10,
"image_url": "https://farmart.botble.com/storage/products/36-150x150.jpg",
"product_options": [],
"store": {
"id": 6,
"slug": "stouffer",
"name": "Stouffer"
}
},
{
"id": 37,
"slug": "dolmio-bolognese-pasta-sauce",
"url": "https://farmart.botble.com/products/dolmio-bolognese-pasta-sauce",
"name": "Dolmio Bolognese Pasta Sauce",
"sku": "WO-113",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 15,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 239.12,
"price_formatted": "$239.12",
"original_price": 647,
"original_price_formatted": "$647.00",
"reviews_avg": 2.89,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/37.jpg",
"https://farmart.botble.com/storage/products/37-1.jpg",
"https://farmart.botble.com/storage/products/37-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/37-150x150.jpg",
"https://farmart.botble.com/storage/products/37-1-150x150.jpg",
"https://farmart.botble.com/storage/products/37-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/37.jpg",
"https://farmart.botble.com/storage/products/37-1.jpg",
"https://farmart.botble.com/storage/products/37-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/37-150x150.jpg",
"https://farmart.botble.com/storage/products/37-1-150x150.jpg",
"https://farmart.botble.com/storage/products/37-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/37-300x300.jpg",
"https://farmart.botble.com/storage/products/37-1-300x300.jpg",
"https://farmart.botble.com/storage/products/37-2-300x300.jpg"
]
},
"weight": 537,
"height": 13,
"wide": 11,
"length": 16,
"image_url": "https://farmart.botble.com/storage/products/37-150x150.jpg",
"product_options": [],
"store": {
"id": 4,
"slug": "global-store",
"name": "Global Store"
}
},
{
"id": 38,
"slug": "sitema-bakeit-plastic-box",
"url": "https://farmart.botble.com/products/sitema-bakeit-plastic-box",
"name": "Sitema BakeIT Plastic Box",
"sku": "PY-199",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 105,
"price_formatted": "$105.00",
"original_price": 509,
"original_price_formatted": "$509.00",
"reviews_avg": 3.83,
"reviews_count": 6,
"images": [
"https://farmart.botble.com/storage/products/38.jpg",
"https://farmart.botble.com/storage/products/38-1.jpg",
"https://farmart.botble.com/storage/products/38-2.jpg",
"https://farmart.botble.com/storage/products/38-3.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/38-150x150.jpg",
"https://farmart.botble.com/storage/products/38-1-150x150.jpg",
"https://farmart.botble.com/storage/products/38-2-150x150.jpg",
"https://farmart.botble.com/storage/products/38-3-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/38.jpg",
"https://farmart.botble.com/storage/products/38-1.jpg",
"https://farmart.botble.com/storage/products/38-2.jpg",
"https://farmart.botble.com/storage/products/38-3.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/38-150x150.jpg",
"https://farmart.botble.com/storage/products/38-1-150x150.jpg",
"https://farmart.botble.com/storage/products/38-2-150x150.jpg",
"https://farmart.botble.com/storage/products/38-3-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/38-300x300.jpg",
"https://farmart.botble.com/storage/products/38-1-300x300.jpg",
"https://farmart.botble.com/storage/products/38-2-300x300.jpg",
"https://farmart.botble.com/storage/products/38-3-300x300.jpg"
]
},
"weight": 781,
"height": 14,
"wide": 15,
"length": 12,
"image_url": "https://farmart.botble.com/storage/products/38-150x150.jpg",
"product_options": [],
"store": {
"id": 4,
"slug": "global-store",
"name": "Global Store"
}
},
{
"id": 39,
"slug": "wayfair-basics-dinner-plate-storage",
"url": "https://farmart.botble.com/products/wayfair-basics-dinner-plate-storage",
"name": "Wayfair Basics Dinner Plate Storage",
"sku": "06-161",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 13,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1137,
"price_formatted": "$1,137.00",
"original_price": 1139,
"original_price_formatted": "$1,139.00",
"reviews_avg": 2.6,
"reviews_count": 10,
"images": [
"https://farmart.botble.com/storage/products/39.jpg",
"https://farmart.botble.com/storage/products/39-1.jpg",
"https://farmart.botble.com/storage/products/39-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/39-150x150.jpg",
"https://farmart.botble.com/storage/products/39-1-150x150.jpg",
"https://farmart.botble.com/storage/products/39-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/39.jpg",
"https://farmart.botble.com/storage/products/39-1.jpg",
"https://farmart.botble.com/storage/products/39-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/39-150x150.jpg",
"https://farmart.botble.com/storage/products/39-1-150x150.jpg",
"https://farmart.botble.com/storage/products/39-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/39-300x300.jpg",
"https://farmart.botble.com/storage/products/39-1-300x300.jpg",
"https://farmart.botble.com/storage/products/39-2-300x300.jpg"
]
},
"weight": 563,
"height": 11,
"wide": 12,
"length": 11,
"image_url": "https://farmart.botble.com/storage/products/39-150x150.jpg",
"product_options": [],
"store": {
"id": 2,
"slug": "global-office",
"name": "Global Office"
}
},
{
"id": 40,
"slug": "miko-the-panda-water-bottle-digital",
"url": "https://farmart.botble.com/products/miko-the-panda-water-bottle-digital",
"name": "Miko The Panda Water Bottle (Digital)",
"sku": "GE-129",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 34.5,
"price_formatted": "$34.50",
"original_price": 699,
"original_price_formatted": "$699.00",
"reviews_avg": 3.78,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/40.jpg",
"https://farmart.botble.com/storage/products/40-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/40-150x150.jpg",
"https://farmart.botble.com/storage/products/40-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/40.jpg",
"https://farmart.botble.com/storage/products/40-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/40-150x150.jpg",
"https://farmart.botble.com/storage/products/40-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/40-300x300.jpg",
"https://farmart.botble.com/storage/products/40-1-300x300.jpg"
]
},
"weight": 592,
"height": 10,
"wide": 16,
"length": 19,
"image_url": "https://farmart.botble.com/storage/products/40-150x150.jpg",
"product_options": [],
"store": {
"id": 1,
"slug": "gopro",
"name": "GoPro"
}
},
{
"id": 41,
"slug": "sesame-seed-bread",
"url": "https://farmart.botble.com/products/sesame-seed-bread",
"name": "Sesame Seed Bread",
"sku": "D6-136-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 16,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 927,
"price_formatted": "$927.00",
"original_price": 927,
"original_price_formatted": "$927.00",
"reviews_avg": 2.25,
"reviews_count": 4,
"images": [
"https://farmart.botble.com/storage/products/41.jpg",
"https://farmart.botble.com/storage/products/41-1.jpg",
"https://farmart.botble.com/storage/products/41-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/41-150x150.jpg",
"https://farmart.botble.com/storage/products/41-1-150x150.jpg",
"https://farmart.botble.com/storage/products/41-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/41.jpg",
"https://farmart.botble.com/storage/products/41-1.jpg",
"https://farmart.botble.com/storage/products/41-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/41-150x150.jpg",
"https://farmart.botble.com/storage/products/41-1-150x150.jpg",
"https://farmart.botble.com/storage/products/41-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/41-300x300.jpg",
"https://farmart.botble.com/storage/products/41-1-300x300.jpg",
"https://farmart.botble.com/storage/products/41-2-300x300.jpg"
]
},
"weight": 703,
"height": 14,
"wide": 20,
"length": 11,
"image_url": "https://farmart.botble.com/storage/products/41-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 42,
"slug": "morrisons-the-best-beef",
"url": "https://farmart.botble.com/products/morrisons-the-best-beef",
"name": "Morrisons The Best Beef",
"sku": "LU-146",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 111,
"price_formatted": "$111.00",
"original_price": 945,
"original_price_formatted": "$945.00",
"reviews_avg": 2.43,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/42.jpg",
"https://farmart.botble.com/storage/products/42-1.jpg",
"https://farmart.botble.com/storage/products/42-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/42-150x150.jpg",
"https://farmart.botble.com/storage/products/42-1-150x150.jpg",
"https://farmart.botble.com/storage/products/42-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/42.jpg",
"https://farmart.botble.com/storage/products/42-1.jpg",
"https://farmart.botble.com/storage/products/42-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/42-150x150.jpg",
"https://farmart.botble.com/storage/products/42-1-150x150.jpg",
"https://farmart.botble.com/storage/products/42-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/42-300x300.jpg",
"https://farmart.botble.com/storage/products/42-1-300x300.jpg",
"https://farmart.botble.com/storage/products/42-2-300x300.jpg"
]
},
"weight": 552,
"height": 19,
"wide": 16,
"length": 13,
"image_url": "https://farmart.botble.com/storage/products/42-150x150.jpg",
"product_options": [],
"store": {
"id": 5,
"slug": "roberts-store",
"name": "Robert’s Store"
}
},
{
"id": 43,
"slug": "avocado-hass-large",
"url": "https://farmart.botble.com/products/avocado-hass-large",
"name": "Avocado, Hass Large",
"sku": "KO-176",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 20,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 738,
"price_formatted": "$738.00",
"original_price": 1256,
"original_price_formatted": "$1,256.00",
"reviews_avg": 2.88,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/43.jpg",
"https://farmart.botble.com/storage/products/43-1.jpg",
"https://farmart.botble.com/storage/products/43-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/43-150x150.jpg",
"https://farmart.botble.com/storage/products/43-1-150x150.jpg",
"https://farmart.botble.com/storage/products/43-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/43.jpg",
"https://farmart.botble.com/storage/products/43-1.jpg",
"https://farmart.botble.com/storage/products/43-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/43-150x150.jpg",
"https://farmart.botble.com/storage/products/43-1-150x150.jpg",
"https://farmart.botble.com/storage/products/43-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/43-300x300.jpg",
"https://farmart.botble.com/storage/products/43-1-300x300.jpg",
"https://farmart.botble.com/storage/products/43-2-300x300.jpg"
]
},
"weight": 851,
"height": 17,
"wide": 10,
"length": 12,
"image_url": "https://farmart.botble.com/storage/products/43-150x150.jpg",
"product_options": [],
"store": {
"id": 6,
"slug": "stouffer",
"name": "Stouffer"
}
},
{
"id": 44,
"slug": "italia-beef-lasagne-digital",
"url": "https://farmart.botble.com/products/italia-beef-lasagne-digital",
"name": "Italia Beef Lasagne (Digital)",
"sku": "IB-110",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 297,
"price_formatted": "$297.00",
"original_price": 1224,
"original_price_formatted": "$1,224.00",
"reviews_avg": 3.14,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/44.jpg",
"https://farmart.botble.com/storage/products/44-1.jpg",
"https://farmart.botble.com/storage/products/44-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/44-150x150.jpg",
"https://farmart.botble.com/storage/products/44-1-150x150.jpg",
"https://farmart.botble.com/storage/products/44-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/44.jpg",
"https://farmart.botble.com/storage/products/44-1.jpg",
"https://farmart.botble.com/storage/products/44-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/44-150x150.jpg",
"https://farmart.botble.com/storage/products/44-1-150x150.jpg",
"https://farmart.botble.com/storage/products/44-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/44-300x300.jpg",
"https://farmart.botble.com/storage/products/44-1-300x300.jpg",
"https://farmart.botble.com/storage/products/44-2-300x300.jpg"
]
},
"weight": 630,
"height": 16,
"wide": 13,
"length": 12,
"image_url": "https://farmart.botble.com/storage/products/44-150x150.jpg",
"product_options": [],
"store": {
"id": 3,
"slug": "young-shop",
"name": "Young Shop"
}
},
{
"id": 45,
"slug": "maxwell-house-classic-roast-mocha",
"url": "https://farmart.botble.com/products/maxwell-house-classic-roast-mocha",
"name": "Maxwell House Classic Roast Mocha",
"sku": "7W-168",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 12,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 251,
"price_formatted": "$251.00",
"original_price": 1110,
"original_price_formatted": "$1,110.00",
"reviews_avg": 3.44,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/45.jpg",
"https://farmart.botble.com/storage/products/45-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/45-150x150.jpg",
"https://farmart.botble.com/storage/products/45-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/45.jpg",
"https://farmart.botble.com/storage/products/45-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/45-150x150.jpg",
"https://farmart.botble.com/storage/products/45-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/45-300x300.jpg",
"https://farmart.botble.com/storage/products/45-1-300x300.jpg"
]
},
"weight": 567,
"height": 19,
"wide": 10,
"length": 19,
"image_url": "https://farmart.botble.com/storage/products/45-150x150.jpg",
"product_options": [],
"store": {
"id": 3,
"slug": "young-shop",
"name": "Young Shop"
}
},
{
"id": 46,
"slug": "bottled-pure-water-500ml",
"url": "https://farmart.botble.com/products/bottled-pure-water-500ml",
"name": "Bottled Pure Water 500ml",
"sku": "0P-145-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 1221,
"price_formatted": "$1,221.00",
"original_price": 1221,
"original_price_formatted": "$1,221.00",
"reviews_avg": 3,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/46.jpg",
"https://farmart.botble.com/storage/products/46-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/46-150x150.jpg",
"https://farmart.botble.com/storage/products/46-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/46.jpg",
"https://farmart.botble.com/storage/products/46-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/46-150x150.jpg",
"https://farmart.botble.com/storage/products/46-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/46-300x300.jpg",
"https://farmart.botble.com/storage/products/46-1-300x300.jpg"
]
},
"weight": 736,
"height": 10,
"wide": 18,
"length": 18,
"image_url": "https://farmart.botble.com/storage/products/46-150x150.jpg",
"product_options": [],
"store": {
"id": 3,
"slug": "young-shop",
"name": "Young Shop"
}
},
{
"id": 47,
"slug": "famart-farmhouse-soft-white",
"url": "https://farmart.botble.com/products/famart-farmhouse-soft-white",
"name": "Famart Farmhouse Soft White",
"sku": "LN-166",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 18,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 843,
"price_formatted": "$843.00",
"original_price": 941,
"original_price_formatted": "$941.00",
"reviews_avg": 3.89,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/47.jpg",
"https://farmart.botble.com/storage/products/47-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/47-150x150.jpg",
"https://farmart.botble.com/storage/products/47-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/47.jpg",
"https://farmart.botble.com/storage/products/47-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/47-150x150.jpg",
"https://farmart.botble.com/storage/products/47-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/47-300x300.jpg",
"https://farmart.botble.com/storage/products/47-1-300x300.jpg"
]
},
"weight": 505,
"height": 13,
"wide": 16,
"length": 15,
"image_url": "https://farmart.botble.com/storage/products/47-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 48,
"slug": "coca-cola-original-taste-digital",
"url": "https://farmart.botble.com/products/coca-cola-original-taste-digital",
"name": "Coca-Cola Original Taste (Digital)",
"sku": "BK-102-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 10,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 599.25,
"price_formatted": "$599.25",
"original_price": 799,
"original_price_formatted": "$799.00",
"reviews_avg": 2.75,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/48.jpg",
"https://farmart.botble.com/storage/products/48-1.jpg",
"https://farmart.botble.com/storage/products/48-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/48-150x150.jpg",
"https://farmart.botble.com/storage/products/48-1-150x150.jpg",
"https://farmart.botble.com/storage/products/48-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/48.jpg",
"https://farmart.botble.com/storage/products/48-1.jpg",
"https://farmart.botble.com/storage/products/48-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/48-150x150.jpg",
"https://farmart.botble.com/storage/products/48-1-150x150.jpg",
"https://farmart.botble.com/storage/products/48-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/48-300x300.jpg",
"https://farmart.botble.com/storage/products/48-1-300x300.jpg",
"https://farmart.botble.com/storage/products/48-2-300x300.jpg"
]
},
"weight": 551,
"height": 13,
"wide": 14,
"length": 16,
"image_url": "https://farmart.botble.com/storage/products/48-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 49,
"slug": "casillero-diablo-cabernet-sauvignon",
"url": "https://farmart.botble.com/products/casillero-diablo-cabernet-sauvignon",
"name": "Casillero Diablo Cabernet Sauvignon",
"sku": "V9-182",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 16,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 543,
"price_formatted": "$543.00",
"original_price": 1240,
"original_price_formatted": "$1,240.00",
"reviews_avg": 3,
"reviews_count": 10,
"images": [
"https://farmart.botble.com/storage/products/49.jpg",
"https://farmart.botble.com/storage/products/49-1.jpg",
"https://farmart.botble.com/storage/products/49-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/49-150x150.jpg",
"https://farmart.botble.com/storage/products/49-1-150x150.jpg",
"https://farmart.botble.com/storage/products/49-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/49.jpg",
"https://farmart.botble.com/storage/products/49-1.jpg",
"https://farmart.botble.com/storage/products/49-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/49-150x150.jpg",
"https://farmart.botble.com/storage/products/49-1-150x150.jpg",
"https://farmart.botble.com/storage/products/49-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/49-300x300.jpg",
"https://farmart.botble.com/storage/products/49-1-300x300.jpg",
"https://farmart.botble.com/storage/products/49-2-300x300.jpg"
]
},
"weight": 592,
"height": 13,
"wide": 19,
"length": 20,
"image_url": "https://farmart.botble.com/storage/products/49-150x150.jpg",
"product_options": [],
"store": {
"id": 1,
"slug": "gopro",
"name": "GoPro"
}
},
{
"id": 50,
"slug": "arla-organic-free-range-milk",
"url": "https://farmart.botble.com/products/arla-organic-free-range-milk",
"name": "Arla Organic Free Range Milk",
"sku": "PB-164-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 12,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 712,
"price_formatted": "$712.00",
"original_price": 712,
"original_price_formatted": "$712.00",
"reviews_avg": 3.33,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/50.jpg",
"https://farmart.botble.com/storage/products/50-1.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/50-150x150.jpg",
"https://farmart.botble.com/storage/products/50-1-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/50.jpg",
"https://farmart.botble.com/storage/products/50-1.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/50-150x150.jpg",
"https://farmart.botble.com/storage/products/50-1-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/50-300x300.jpg",
"https://farmart.botble.com/storage/products/50-1-300x300.jpg"
]
},
"weight": 694,
"height": 12,
"wide": 10,
"length": 10,
"image_url": "https://farmart.botble.com/storage/products/50-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 51,
"slug": "aptamil-follow-on-baby-milk",
"url": "https://farmart.botble.com/products/aptamil-follow-on-baby-milk",
"name": "Aptamil Follow On Baby Milk",
"sku": "2J-170-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 19,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 744,
"price_formatted": "$744.00",
"original_price": 744,
"original_price_formatted": "$744.00",
"reviews_avg": 2.56,
"reviews_count": 9,
"images": [
"https://farmart.botble.com/storage/products/51.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/51-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/51.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/51-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/51-300x300.jpg"
]
},
"weight": 560,
"height": 13,
"wide": 15,
"length": 17,
"image_url": "https://farmart.botble.com/storage/products/51-150x150.jpg",
"product_options": [],
"store": {
"id": 6,
"slug": "stouffer",
"name": "Stouffer"
}
},
{
"id": 6,
"slug": "nikon-hd-camera",
"url": "https://farmart.botble.com/products/nikon-hd-camera",
"name": "Nikon HD camera",
"sku": "UR-187",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 18,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 260.1,
"price_formatted": "$260.10",
"original_price": 500,
"original_price_formatted": "$500.00",
"reviews_avg": 2.67,
"reviews_count": 6,
"images": [
"https://farmart.botble.com/storage/products/6.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/6-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/6.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/6-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/6-300x300.jpg"
]
},
"weight": 670,
"height": 11,
"wide": 13,
"length": 10,
"image_url": "https://farmart.botble.com/storage/products/6-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 7,
"slug": "audio-equipment",
"url": "https://farmart.botble.com/products/audio-equipment",
"name": "Audio Equipment",
"sku": "AJ-130",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 20,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 236,
"price_formatted": "$236.00",
"original_price": 581,
"original_price_formatted": "$581.00",
"reviews_avg": 2.63,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/7.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/7-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/7.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/7-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/7-300x300.jpg"
]
},
"weight": 709,
"height": 13,
"wide": 15,
"length": 15,
"image_url": "https://farmart.botble.com/storage/products/7-150x150.jpg",
"product_options": [],
"store": {
"id": 7,
"slug": "starkist",
"name": "StarKist"
}
},
{
"id": 8,
"slug": "smart-televisions-digital",
"url": "https://farmart.botble.com/products/smart-televisions-digital",
"name": "Smart Televisions (Digital)",
"sku": "HJ-127-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 16,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 950.76,
"price_formatted": "$950.76",
"original_price": 1251,
"original_price_formatted": "$1,251.00",
"reviews_avg": 3,
"reviews_count": 6,
"images": [
"https://farmart.botble.com/storage/products/8.jpg",
"https://farmart.botble.com/storage/products/8-1.jpg",
"https://farmart.botble.com/storage/products/8-2.jpg",
"https://farmart.botble.com/storage/products/8-3.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/8-150x150.jpg",
"https://farmart.botble.com/storage/products/8-1-150x150.jpg",
"https://farmart.botble.com/storage/products/8-2-150x150.jpg",
"https://farmart.botble.com/storage/products/8-3-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/8.jpg",
"https://farmart.botble.com/storage/products/8-1.jpg",
"https://farmart.botble.com/storage/products/8-2.jpg",
"https://farmart.botble.com/storage/products/8-3.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/8-150x150.jpg",
"https://farmart.botble.com/storage/products/8-1-150x150.jpg",
"https://farmart.botble.com/storage/products/8-2-150x150.jpg",
"https://farmart.botble.com/storage/products/8-3-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/8-300x300.jpg",
"https://farmart.botble.com/storage/products/8-1-300x300.jpg",
"https://farmart.botble.com/storage/products/8-2-300x300.jpg",
"https://farmart.botble.com/storage/products/8-3-300x300.jpg"
]
},
"weight": 614,
"height": 14,
"wide": 16,
"length": 18,
"image_url": "https://farmart.botble.com/storage/products/8-150x150.jpg",
"product_options": [],
"store": {
"id": 8,
"slug": "old-el-paso",
"name": "Old El Paso"
}
},
{
"id": 9,
"slug": "samsung-smart-phone",
"url": "https://farmart.botble.com/products/samsung-smart-phone",
"name": "Samsung Smart Phone",
"sku": "MZ-106",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 20,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 151,
"price_formatted": "$151.00",
"original_price": 568,
"original_price_formatted": "$568.00",
"reviews_avg": 3.13,
"reviews_count": 8,
"images": [
"https://farmart.botble.com/storage/products/9.jpg",
"https://farmart.botble.com/storage/products/9-1.jpg",
"https://farmart.botble.com/storage/products/9-2.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/9-150x150.jpg",
"https://farmart.botble.com/storage/products/9-1-150x150.jpg",
"https://farmart.botble.com/storage/products/9-2-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/9.jpg",
"https://farmart.botble.com/storage/products/9-1.jpg",
"https://farmart.botble.com/storage/products/9-2.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/9-150x150.jpg",
"https://farmart.botble.com/storage/products/9-1-150x150.jpg",
"https://farmart.botble.com/storage/products/9-2-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/9-300x300.jpg",
"https://farmart.botble.com/storage/products/9-1-300x300.jpg",
"https://farmart.botble.com/storage/products/9-2-300x300.jpg"
]
},
"weight": 591,
"height": 12,
"wide": 10,
"length": 14,
"image_url": "https://farmart.botble.com/storage/products/9-150x150.jpg",
"product_options": [],
"store": {
"id": 2,
"slug": "global-office",
"name": "Global Office"
}
}
],
"links": {
"first": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products?page=1",
"last": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products?page=2",
"prev": null,
"next": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"links": [
{
"url": null,
"label": "« Previous",
"page": null,
"active": false
},
{
"url": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products?page=1",
"label": "1",
"page": 1,
"active": true
},
{
"url": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products?page=2",
"label": "2",
"page": 2,
"active": false
},
{
"url": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products?page=2",
"label": "Next »",
"page": 2,
"active": false
}
],
"path": "https://farmart.botble.com/api/v1/ecommerce/brands/1/products",
"per_page": 40,
"to": 40,
"total": 65
},
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cart
Add product to cart
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/cart" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1,
\"qty\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/cart"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1,
"qty": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Add product to cart
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1,
\"qty\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1,
"qty": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update quantity of a product in cart
Example request:
curl --request PUT \
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1,
\"qty\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1,
"qty": 1
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove a cart item by its ID.
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a cart item by id.
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/cart/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": 1,
\"id\": \"e70c6c88dae8344b03e39bb147eba66a\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/cart/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": 1,
"id": "e70c6c88dae8344b03e39bb147eba66a"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"id": "architecto",
"cart_items": [],
"count": 0,
"raw_total": 0,
"raw_total_formatted": "$0.00",
"sub_total": 0,
"sub_total_formatted": "$0.00",
"tax_amount": 0,
"tax_amount_formatted": "$0.00",
"promotion_discount_amount": 0,
"promotion_discount_amount_formatted": "$0.00",
"coupon_discount_amount": 0,
"coupon_discount_amount_formatted": "$0.00",
"applied_coupon_code": null,
"order_total": 0,
"order_total_formatted": "$0.00"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Refresh cart items
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/cart/refresh" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"products\": [
\"architecto\"
]
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/cart/refresh"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"products": [
"architecto"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Calculate tax for products in cart
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/checkout/taxes/calculate" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"products\": [
\"architecto\"
],
\"country\": \"US\",
\"state\": \"CA\",
\"city\": \"Los Angeles\",
\"zip_code\": \"90001\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/checkout/taxes/calculate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"products": [
"architecto"
],
"country": "US",
"state": "CA",
"city": "Los Angeles",
"zip_code": "90001"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"items": [
{
"product_id": 1,
"price": 100,
"price_formatted": "$100.00",
"quantity": 2,
"tax_rate": 10,
"tax_amount": 20,
"tax_amount_formatted": "$20.00",
"subtotal": 200,
"subtotal_formatted": "$200.00",
"total": 220,
"total_formatted": "$220.00"
}
],
"totals": {
"sub_total": 200,
"sub_total_formatted": "$200.00",
"tax_amount": 20,
"tax_amount_formatted": "$20.00",
"total": 220,
"total_formatted": "$220.00"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Checkout
Process Checkout Process the checkout for a specific cart ID. This endpoint restores the cart, generates an order token, and redirects the user to the checkout page.
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/checkout/cart/12345" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/checkout/cart/12345"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (302):
{}
Example response (302):
Show headers
cache-control: no-cache, private
location: https://farmart.botble.com/checkout/1d519bc965cd51a96530a946a24cb851
content-type: text/html; charset=utf-8
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
referrer-policy: strict-origin-when-cross-origin
access-control-allow-origin: *
set-cookie: botble_session=eyJpdiI6IkFvbVZpRFdrcXpNOU9TdGlrYjJBeWc9PSIsInZhbHVlIjoiRnp3RkhLN0lKYkdmTFdQdFFBLzdQMmF6SGFpemg0MGtxakUwMk9ydW5QOEh5TEFtRFlmNEpiWGx3SldhclBOVCt0aGh1ZElQVzQ1SHlmb002d203ajZvN1Z3MGduWU0vTUlqaEgzQ2sySElpdnRuL3VneEFqK2k3MTZQMGJVMzAiLCJtYWMiOiI3MTM1ZWQ5MjNhNDQ0NTI3ODFjMWNhYjI1YmQ1OWY3Mzc5NzJjMTg2ZDFiMGY4ZTk3NjBlNWJhNWJlNDRiYzZlIiwidGFnIjoiIn0%3D; expires=Thu, 04 Dec 2025 03:25:51 GMT; Max-Age=7200; path=/; secure; httponly; samesite=lax; botble_footprints_cookie=eyJpdiI6InN0UWlpekhBb3NIZHZ0ajdxT0VYSUE9PSIsInZhbHVlIjoiUmFiekE2T0l0WFZFMjlZY0hkZkV1TUNreXFRSHpjOHYyNDZDNW81eHgwT1B4Y0pzQlJaVXM1TmdoL0tsbXppY1pQZ2tGb3R4bFZNbHRyTEplcGxOMWxLOGIrenpSdzJxYUZpTXNrWHN5Q0pYQkJSUkRjT0ZJSTd5Nm9uUzFGeGIiLCJtYWMiOiI4N2E1NjgyOTM5NjZlZWE5Mzg3Mjc5NGUzMDUzY2FiYTY2ZjUxY2Y3ODY0YWEzMWJhMmRhMjJjYzk0Zjc0ODI4IiwidGFnIjoiIn0%3D; expires=Thu, 28 Jan 2027 01:25:51 GMT; Max-Age=36288000; path=/; secure; httponly; samesite=lax; botble_footprints_cookie_data=eyJpdiI6IndmaSsyTG5WR0QweTZ6VlJicmZSbHc9PSIsInZhbHVlIjoiaVpKNGdHUm5lbC9pUW92SlM3QzlYYUlwS09TcFNDTHlTRFFpemJVTTA0QTdTRWhZdXNobGI1N0lMT1B3NStuTUFYR0JUZElaU2VPRnFSSGZ0V084ZUhpcDZyeXZ5QU13QmYxYUpiYWlxRFZjNzNyMGtIYnBLcjBScUF0RXhlQ09Xd3hMTUVtbmVBaGNUU3Z2SmI0WnBad3FCYjVzZ1Y5T3REZUNLSVdzZmtnVHI2VUpMNm1xN2VVbVNpWTJTdjd6SzBDYitMZ2VrVmF0Z2o3RE82M0FockRzNkRZNVRoRlFaMjQ3OXNLZFQzY08xVC9oQUduNHRZWUVEWGYwTzM5UURBaDNZVHRldHRHV3I1WFAwM3Y4SUE0QjBVTkQreWlOeFYwa3h6QlVWQ2l0cHg2d0NwUjdZU1p6RUtWaVp4bVhXaVdJVnEvMy95cU5yaHloM01oT05Lb1JHWFJ0bEdoUWdUbGlSNUloUSt2aVFsSUI4N0RVNklSeWZNUUhyUHorQ20wTjBNQS9mWjZKOFlOaHJ1OWUyRU5wbmU5QnJGVmlmYlpYWUZ4dW1JdmNJQlpsdkxLV3BWbnA3eXF4RmdWUXk4UUNqZU9CaFpqb3RaYXZZdlBWSnJGUjVmQnRmL0gzVitjbGQ3bnB0STZLOU1IMDFzUkp6c3RsdnVNQzdLRGRVbG9kNldSMWRzU1MvRTI3dFpKOXNoV0ZvbHlrakR0RWtZaFFGY202M3NnPSIsIm1hYyI6IjRlYWE0OGRlZTdmZjI2MWZmN2EzMDI1NGY1NjI1ZTc3NDhlMTI0MDRiZjBhNzA0OTlmNjgxZTE4NGIxYTkyNTciLCJ0YWciOiIifQ%3D%3D; expires=Thu, 28 Jan 2027 01:25:51 GMT; Max-Age=36288000; path=/; secure; httponly; samesite=lax
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0;url='https://farmart.botble.com/checkout/1d519bc965cd51a96530a946a24cb851'" />
<title>Redirecting to https://farmart.botble.com/checkout/1d519bc965cd51a96530a946a24cb851</title>
</head>
<body>
Redirecting to <a href="https://farmart.botble.com/checkout/1d519bc965cd51a96530a946a24cb851">https://farmart.botble.com/checkout/1d519bc965cd51a96530a946a24cb851</a>.
</body>
</html>
Example response (401):
{
"message": "Unauthenticated."
}
Example response (404):
{
"message": "Cart not found."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Compare
Add product to compare
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/compare" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/compare"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Add product to compare
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/compare/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/compare/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove a product from compare list
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/ecommerce/compare/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/compare/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get compare items
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/compare/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": \"e70c6c88dae8344b03e39bb147eba66a\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/compare/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": "e70c6c88dae8344b03e39bb147eba66a"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"id": "architecto",
"data": {
"count": 0,
"items": []
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Contact
Store a new contact message
Rate limit: 5 requests per minute per IP address
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/contacts" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"John Doe\",
\"email\": \"[email protected]\",
\"content\": \"I would like to know more about your services.\",
\"phone\": \"+1234567890\",
\"address\": \"123 Main St\",
\"subject\": \"General Inquiry\",
\"agree_terms_and_policy\": true,
\"contact_custom_fields\": [
\"architecto\"
]
}"
const url = new URL(
"https://farmart.botble.com/api/v1/contacts"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "John Doe",
"email": "[email protected]",
"content": "I would like to know more about your services.",
"phone": "+1234567890",
"address": "123 Main St",
"subject": "General Inquiry",
"agree_terms_and_policy": true,
"contact_custom_fields": [
"architecto"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": null,
"message": "We received your message and will contact you soon!"
}
Example response (422):
{
"error": true,
"message": "The given data was invalid.",
"errors": {
"name": [
"The name field is required."
],
"email": [
"The email field is required."
]
}
}
Example response (429):
{
"message": "Too Many Attempts."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Coupons
Get all available coupons
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/coupons?coupon_ids=1%2C2%2C3" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/coupons"
);
const params = {
"coupon_ids": "1,2,3",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": [
{
"id": 2,
"title": "Discount 2",
"code": "ZBAPQ5MOOVZT",
"description": null,
"value": 84,
"type_option": "percentage",
"target": "all-orders",
"min_order_price": null,
"min_order_price_formatted": "$0.00",
"start_date": "2025-10-15T08:12:00.000000Z",
"end_date": null,
"quantity": null,
"total_used": 0,
"left_quantity": 0,
"can_use_with_promotion": false,
"can_use_with_flash_sale": false,
"apply_via_url": false,
"display_at_checkout": true,
"is_expired": false
}
],
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Apply coupon code
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/coupon/apply" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"coupon_code\": \"DISCOUNT20\",
\"cart_id\": \"e70c6c88dae8344b03e39bb147eba66a\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/coupon/apply"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"coupon_code": "DISCOUNT20",
"cart_id": "e70c6c88dae8344b03e39bb147eba66a"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove coupon code
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/coupon/remove" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"cart_id\": \"e70c6c88dae8344b03e39bb147eba66a\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/coupon/remove"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"cart_id": "e70c6c88dae8344b03e39bb147eba66a"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Currencies
Get list of available currencies
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/currencies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/currencies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": true,
"decimals": 2,
"order": 0,
"is_default": true,
"exchange_rate": 1
},
{
"id": 2,
"title": "EUR",
"symbol": "€",
"is_prefix_symbol": false,
"decimals": 2,
"order": 1,
"is_default": false,
"exchange_rate": 0.91
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get current currency
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/currencies/current" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/currencies/current"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": true,
"decimals": 2,
"order": 0,
"is_default": true,
"exchange_rate": 1
},
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Device Tokens
Register or update device token
Register a new device token or update an existing one for push notifications.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/device-tokens" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"architecto\",
\"platform\": \"architecto\",
\"app_version\": \"architecto\",
\"device_id\": \"architecto\",
\"user_type\": \"architecto\",
\"user_id\": 16
}"
const url = new URL(
"https://farmart.botble.com/api/v1/device-tokens"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "architecto",
"platform": "architecto",
"app_version": "architecto",
"device_id": "architecto",
"user_type": "architecto",
"user_id": 16
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get user's device tokens
Retrieve all device tokens for the authenticated user.
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/device-tokens" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/device-tokens"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update device token
Update an existing device token.
Example request:
curl --request PUT \
"https://farmart.botble.com/api/v1/device-tokens/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"platform\": \"architecto\",
\"app_version\": \"architecto\",
\"device_id\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/device-tokens/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"platform": "architecto",
"app_version": "architecto",
"device_id": "architecto"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete device token by token value
Delete a device token using the token value.
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/device-tokens/by-token" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/device-tokens/by-token"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "architecto"
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete device token
Delete a device token to stop receiving push notifications.
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/device-tokens/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/device-tokens/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Deactivate device token
Deactivate a device token without deleting it.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/device-tokens/564/deactivate" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/device-tokens/564/deactivate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Downloads
Get list of digital products available for download
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/downloads" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/downloads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Download a digital product
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/downloads/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/downloads/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Endpoints
Download a file using a token
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/download/architecto/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/download/architecto/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": ""
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Download a proof file using a token
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/orders/download-proof/architecto/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/download-proof/architecto/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "No query results for model [Botble\\Ecommerce\\Models\\Order] architecto"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Filters
Get filter data for products
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/filters" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/filters"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": {
"categories": [
{
"id": 1,
"name": "Fruits & Vegetables",
"slug": "fruits-vegetables",
"url": "product-categories/fruits-vegetables",
"parent_id": 0
},
{
"id": 24,
"name": "Breads Sweets",
"slug": "breads-sweets",
"url": "product-categories/breads-sweets",
"parent_id": 0
},
{
"id": 52,
"name": "Frozen Seafoods",
"slug": "frozen-seafoods",
"url": "product-categories/frozen-seafoods",
"parent_id": 0
},
{
"id": 53,
"name": "Raw Meats",
"slug": "raw-meats",
"url": "product-categories/raw-meats",
"parent_id": 0
},
{
"id": 54,
"name": "Wines & Alcohol Drinks",
"slug": "wines-alcohol-drinks",
"url": "product-categories/wines-alcohol-drinks",
"parent_id": 0
},
{
"id": 80,
"name": "Tea & Coffee",
"slug": "tea-coffee",
"url": "product-categories/tea-coffee",
"parent_id": 0
},
{
"id": 81,
"name": "Milks and Dairies",
"slug": "milks-and-dairies",
"url": "product-categories/milks-and-dairies",
"parent_id": 0
},
{
"id": 82,
"name": "Pet Foods",
"slug": "pet-foods",
"url": "product-categories/pet-foods",
"parent_id": 0
},
{
"id": 83,
"name": "Food Cupboard",
"slug": "food-cupboard",
"url": "product-categories/food-cupboard",
"parent_id": 0
},
{
"id": 2,
"name": "Fruits",
"slug": "fruits",
"url": "product-categories/fruits",
"parent_id": 1
},
{
"id": 14,
"name": "Vegetables",
"slug": "vegetables",
"url": "product-categories/vegetables",
"parent_id": 1
},
{
"id": 3,
"name": "Apples",
"slug": "apples",
"url": "product-categories/apples",
"parent_id": 2
},
{
"id": 4,
"name": "Bananas",
"slug": "bananas",
"url": "product-categories/bananas",
"parent_id": 2
},
{
"id": 5,
"name": "Berries",
"slug": "berries",
"url": "product-categories/berries",
"parent_id": 2
},
{
"id": 6,
"name": "Oranges & Easy Peelers",
"slug": "oranges-easy-peelers",
"url": "product-categories/oranges-easy-peelers",
"parent_id": 2
},
{
"id": 7,
"name": "Grapes",
"slug": "grapes",
"url": "product-categories/grapes",
"parent_id": 2
},
{
"id": 8,
"name": "Lemons & Limes",
"slug": "lemons-limes",
"url": "product-categories/lemons-limes",
"parent_id": 2
},
{
"id": 9,
"name": "Peaches & Nectarines",
"slug": "peaches-nectarines",
"url": "product-categories/peaches-nectarines",
"parent_id": 2
},
{
"id": 10,
"name": "Pears",
"slug": "pears",
"url": "product-categories/pears",
"parent_id": 2
},
{
"id": 11,
"name": "Melon",
"slug": "melon",
"url": "product-categories/melon",
"parent_id": 2
},
{
"id": 12,
"name": "Avocados",
"slug": "avocados",
"url": "product-categories/avocados",
"parent_id": 2
},
{
"id": 13,
"name": "Plums & Apricots",
"slug": "plums-apricots",
"url": "product-categories/plums-apricots",
"parent_id": 2
},
{
"id": 15,
"name": "Potatoes",
"slug": "potatoes",
"url": "product-categories/potatoes",
"parent_id": 14
},
{
"id": 16,
"name": "Carrots & Root Vegetables",
"slug": "carrots-root-vegetables",
"url": "product-categories/carrots-root-vegetables",
"parent_id": 14
},
{
"id": 17,
"name": "Broccoli & Cauliflower",
"slug": "broccoli-cauliflower",
"url": "product-categories/broccoli-cauliflower",
"parent_id": 14
},
{
"id": 18,
"name": "Cabbage, Spinach & Greens",
"slug": "cabbage-spinach-greens",
"url": "product-categories/cabbage-spinach-greens",
"parent_id": 14
},
{
"id": 19,
"name": "Onions, Leeks & Garlic",
"slug": "onions-leeks-garlic",
"url": "product-categories/onions-leeks-garlic",
"parent_id": 14
},
{
"id": 20,
"name": "Mushrooms",
"slug": "mushrooms",
"url": "product-categories/mushrooms",
"parent_id": 14
},
{
"id": 21,
"name": "Tomatoes",
"slug": "tomatoes",
"url": "product-categories/tomatoes",
"parent_id": 14
},
{
"id": 22,
"name": "Beans, Peas & Sweetcorn",
"slug": "beans-peas-sweetcorn",
"url": "product-categories/beans-peas-sweetcorn",
"parent_id": 14
},
{
"id": 23,
"name": "Freshly Drink Orange Juice",
"slug": "freshly-drink-orange-juice",
"url": "product-categories/freshly-drink-orange-juice",
"parent_id": 14
},
{
"id": 25,
"name": "Crisps, Snacks & Nuts",
"slug": "crisps-snacks-nuts",
"url": "product-categories/crisps-snacks-nuts",
"parent_id": 24
},
{
"id": 39,
"name": "Tins & Cans",
"slug": "tins-cans",
"url": "product-categories/tins-cans",
"parent_id": 24
},
{
"id": 26,
"name": "Crisps & Popcorn",
"slug": "crisps-popcorn",
"url": "product-categories/crisps-popcorn",
"parent_id": 25
},
{
"id": 27,
"name": "Nuts & Seeds",
"slug": "nuts-seeds",
"url": "product-categories/nuts-seeds",
"parent_id": 25
},
{
"id": 28,
"name": "Lighter Options",
"slug": "lighter-options",
"url": "product-categories/lighter-options",
"parent_id": 25
},
{
"id": 29,
"name": "Cereal Bars",
"slug": "cereal-bars",
"url": "product-categories/cereal-bars",
"parent_id": 25
},
{
"id": 30,
"name": "Breadsticks & Pretzels",
"slug": "breadsticks-pretzels",
"url": "product-categories/breadsticks-pretzels",
"parent_id": 25
},
{
"id": 31,
"name": "Fruit Snacking",
"slug": "fruit-snacking",
"url": "product-categories/fruit-snacking",
"parent_id": 25
},
{
"id": 32,
"name": "Rice & Corn Cakes",
"slug": "rice-corn-cakes",
"url": "product-categories/rice-corn-cakes",
"parent_id": 25
},
{
"id": 33,
"name": "Protein & Energy Snacks",
"slug": "protein-energy-snacks",
"url": "product-categories/protein-energy-snacks",
"parent_id": 25
},
{
"id": 34,
"name": "Toddler Snacks",
"slug": "toddler-snacks",
"url": "product-categories/toddler-snacks",
"parent_id": 25
},
{
"id": 35,
"name": "Meat Snacks",
"slug": "meat-snacks",
"url": "product-categories/meat-snacks",
"parent_id": 25
},
{
"id": 36,
"name": "Beans",
"slug": "beans",
"url": "product-categories/beans",
"parent_id": 25
},
{
"id": 37,
"name": "Lentils",
"slug": "lentils",
"url": "product-categories/lentils",
"parent_id": 25
},
{
"id": 38,
"name": "Chickpeas",
"slug": "chickpeas",
"url": "product-categories/chickpeas",
"parent_id": 25
},
{
"id": 40,
"name": "Tomatoes",
"slug": "tomatoes",
"url": "product-categories/tomatoes",
"parent_id": 39
},
{
"id": 41,
"name": "Baked Beans, Spaghetti",
"slug": "baked-beans-spaghetti",
"url": "product-categories/baked-beans-spaghetti",
"parent_id": 39
},
{
"id": 42,
"name": "Fish",
"slug": "fish",
"url": "product-categories/fish",
"parent_id": 39
},
{
"id": 43,
"name": "Beans & Pulses",
"slug": "beans-pulses",
"url": "product-categories/beans-pulses",
"parent_id": 39
},
{
"id": 44,
"name": "Fruit",
"slug": "fruit",
"url": "product-categories/fruit",
"parent_id": 39
},
{
"id": 45,
"name": "Coconut Milk & Cream",
"slug": "coconut-milk-cream",
"url": "product-categories/coconut-milk-cream",
"parent_id": 39
},
{
"id": 46,
"name": "Lighter Options",
"slug": "lighter-options",
"url": "product-categories/lighter-options",
"parent_id": 39
},
{
"id": 47,
"name": "Olives",
"slug": "olives",
"url": "product-categories/olives",
"parent_id": 39
},
{
"id": 48,
"name": "Sweetcorn",
"slug": "sweetcorn",
"url": "product-categories/sweetcorn",
"parent_id": 39
},
{
"id": 49,
"name": "Carrots",
"slug": "carrots",
"url": "product-categories/carrots",
"parent_id": 39
},
{
"id": 50,
"name": "Peas",
"slug": "peas",
"url": "product-categories/peas",
"parent_id": 39
},
{
"id": 51,
"name": "Mixed Vegetables",
"slug": "mixed-vegetables",
"url": "product-categories/mixed-vegetables",
"parent_id": 39
},
{
"id": 55,
"name": "Ready Meals",
"slug": "ready-meals",
"url": "product-categories/ready-meals",
"parent_id": 54
},
{
"id": 67,
"name": "Salad & Herbs",
"slug": "salad-herbs",
"url": "product-categories/salad-herbs",
"parent_id": 54
},
{
"id": 56,
"name": "Meals for 1",
"slug": "meals-for-1",
"url": "product-categories/meals-for-1",
"parent_id": 55
},
{
"id": 57,
"name": "Meals for 2",
"slug": "meals-for-2",
"url": "product-categories/meals-for-2",
"parent_id": 55
},
{
"id": 58,
"name": "Indian",
"slug": "indian",
"url": "product-categories/indian",
"parent_id": 55
},
{
"id": 59,
"name": "Italian",
"slug": "italian",
"url": "product-categories/italian",
"parent_id": 55
},
{
"id": 60,
"name": "Chinese",
"slug": "chinese",
"url": "product-categories/chinese",
"parent_id": 55
},
{
"id": 61,
"name": "Traditional British",
"slug": "traditional-british",
"url": "product-categories/traditional-british",
"parent_id": 55
},
{
"id": 62,
"name": "Thai & Oriental",
"slug": "thai-oriental",
"url": "product-categories/thai-oriental",
"parent_id": 55
},
{
"id": 63,
"name": "Mediterranean & Moroccan",
"slug": "mediterranean-moroccan",
"url": "product-categories/mediterranean-moroccan",
"parent_id": 55
},
{
"id": 64,
"name": "Mexican & Caribbean",
"slug": "mexican-caribbean",
"url": "product-categories/mexican-caribbean",
"parent_id": 55
},
{
"id": 65,
"name": "Lighter Meals",
"slug": "lighter-meals",
"url": "product-categories/lighter-meals",
"parent_id": 55
},
{
"id": 66,
"name": "Lunch & Veg Pots",
"slug": "lunch-veg-pots",
"url": "product-categories/lunch-veg-pots",
"parent_id": 55
},
{
"id": 68,
"name": "Salad Bags",
"slug": "salad-bags",
"url": "product-categories/salad-bags",
"parent_id": 67
},
{
"id": 69,
"name": "Cucumber",
"slug": "cucumber",
"url": "product-categories/cucumber",
"parent_id": 67
},
{
"id": 70,
"name": "Tomatoes",
"slug": "tomatoes",
"url": "product-categories/tomatoes",
"parent_id": 67
},
{
"id": 71,
"name": "Lettuce",
"slug": "lettuce",
"url": "product-categories/lettuce",
"parent_id": 67
},
{
"id": 72,
"name": "Lunch Salad Bowls",
"slug": "lunch-salad-bowls",
"url": "product-categories/lunch-salad-bowls",
"parent_id": 67
},
{
"id": 73,
"name": "Lunch Salad Bowls",
"slug": "lunch-salad-bowls",
"url": "product-categories/lunch-salad-bowls",
"parent_id": 67
},
{
"id": 74,
"name": "Fresh Herbs",
"slug": "fresh-herbs",
"url": "product-categories/fresh-herbs",
"parent_id": 67
},
{
"id": 75,
"name": "Avocados",
"slug": "avocados",
"url": "product-categories/avocados",
"parent_id": 67
},
{
"id": 76,
"name": "Peppers",
"slug": "peppers",
"url": "product-categories/peppers",
"parent_id": 67
},
{
"id": 77,
"name": "Coleslaw & Potato Salad",
"slug": "coleslaw-potato-salad",
"url": "product-categories/coleslaw-potato-salad",
"parent_id": 67
},
{
"id": 78,
"name": "Spring Onions",
"slug": "spring-onions",
"url": "product-categories/spring-onions",
"parent_id": 67
},
{
"id": 79,
"name": "Chilli, Ginger & Garlic",
"slug": "chilli-ginger-garlic",
"url": "product-categories/chilli-ginger-garlic",
"parent_id": 67
}
],
"brands": [
{
"id": 1,
"name": "FoodPound",
"slug": "foodpound",
"url": "https://farmart.botble.com/products?brands%5B%5D=1",
"products_count": 15
},
{
"id": 2,
"name": "iTea JSC",
"slug": "itea-jsc",
"url": "https://farmart.botble.com/products?brands%5B%5D=2",
"products_count": 13
},
{
"id": 3,
"name": "Soda Brand",
"slug": "soda-brand",
"url": "https://farmart.botble.com/products?brands%5B%5D=3",
"products_count": 8
},
{
"id": 4,
"name": "Farmart",
"slug": "farmart",
"url": "https://farmart.botble.com/products?brands%5B%5D=4",
"products_count": 15
},
{
"id": 5,
"name": "Soda Brand",
"slug": "soda-brand",
"url": "https://farmart.botble.com/products?brands%5B%5D=5",
"products_count": 14
}
],
"tags": [
{
"id": 1,
"name": "Electronic",
"slug": "electronic",
"url": "https://farmart.botble.com/products?tags%5B%5D=1",
"products_count": 38
},
{
"id": 2,
"name": "Mobile",
"slug": "mobile",
"url": "https://farmart.botble.com/products?tags%5B%5D=2",
"products_count": 37
},
{
"id": 3,
"name": "Iphone",
"slug": "iphone",
"url": "https://farmart.botble.com/products?tags%5B%5D=3",
"products_count": 34
},
{
"id": 4,
"name": "Printer",
"slug": "printer",
"url": "https://farmart.botble.com/products?tags%5B%5D=4",
"products_count": 32
},
{
"id": 6,
"name": "IT",
"slug": "it",
"url": "https://farmart.botble.com/products?tags%5B%5D=6",
"products_count": 28
},
{
"id": 5,
"name": "Office",
"slug": "office",
"url": "https://farmart.botble.com/products?tags%5B%5D=5",
"products_count": 26
}
],
"price_ranges": [],
"max_price": 1285,
"current_category_id": 0,
"current_filter_categories": [],
"attributes": [
{
"id": 1,
"title": "Color",
"slug": "color",
"display_layout": "visual",
"attributes": [
{
"id": 1,
"title": "Green",
"slug": "green",
"color": "#5FB7D4",
"image": null,
"is_default": 1,
"is_selected": false
},
{
"id": 2,
"title": "Blue",
"slug": "blue",
"color": "#333333",
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 3,
"title": "Red",
"slug": "red",
"color": "#DA323F",
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 4,
"title": "Black",
"slug": "black",
"color": "#2F366C",
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 5,
"title": "Brown",
"slug": "brown",
"color": "#87554B",
"image": null,
"is_default": 0,
"is_selected": false
}
]
},
{
"id": 3,
"title": "Weight",
"slug": "weight",
"display_layout": "text",
"attributes": [
{
"id": 11,
"title": "1KG",
"slug": "1kg",
"color": null,
"image": null,
"is_default": 1,
"is_selected": false
},
{
"id": 12,
"title": "2KG",
"slug": "2kg",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 13,
"title": "3KG",
"slug": "3kg",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 14,
"title": "4KG",
"slug": "4kg",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 15,
"title": "5KG",
"slug": "5kg",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
}
]
},
{
"id": 2,
"title": "Size",
"slug": "size",
"display_layout": "text",
"attributes": [
{
"id": 6,
"title": "S",
"slug": "s",
"color": null,
"image": null,
"is_default": 1,
"is_selected": false
},
{
"id": 7,
"title": "M",
"slug": "m",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 8,
"title": "L",
"slug": "l",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 9,
"title": "XL",
"slug": "xl",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 10,
"title": "XXL",
"slug": "xxl",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
}
]
},
{
"id": 4,
"title": "Boxes",
"slug": "boxes",
"display_layout": "text",
"attributes": [
{
"id": 16,
"title": "1 Box",
"slug": "1-box",
"color": null,
"image": null,
"is_default": 1,
"is_selected": false
},
{
"id": 17,
"title": "2 Boxes",
"slug": "2-boxes",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 18,
"title": "3 Boxes",
"slug": "3-boxes",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 19,
"title": "4 Boxes",
"slug": "4-boxes",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
},
{
"id": 20,
"title": "5 Boxes",
"slug": "5-boxes",
"color": null,
"image": null,
"is_default": 0,
"is_selected": false
}
]
}
]
},
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Flash Sale
Get flash sales
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/flash-sales?keys=&thumbnail_size=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"keys\": null
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/flash-sales"
);
const params = {
"keys": "",
"thumbnail_size": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"keys": null
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (422):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "The keys field is required."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Languages
Get list of available languages
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/languages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/languages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"lang_id": 1,
"lang_name": "English",
"lang_locale": "en",
"lang_code": "en_US",
"lang_flag": "<svg ...>",
"lang_is_default": true,
"lang_is_rtl": false,
"lang_order": 0
},
{
"lang_id": 2,
"lang_name": "Vietnamese",
"lang_locale": "vi",
"lang_code": "vi",
"lang_flag": "<svg ...>",
"lang_is_default": false,
"lang_is_rtl": false,
"lang_order": 1
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get current language
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/languages/current" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/languages/current"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"lang_id": 1,
"lang_name": "English",
"lang_locale": "en",
"lang_code": "en_US",
"lang_flag": "us",
"lang_is_default": true,
"lang_is_rtl": false,
"lang_order": 0
},
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Notifications
Get user notifications
Retrieve notifications for the authenticated user.
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/notifications?page=1&per_page=20&unread_only=&type=general" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/notifications"
);
const params = {
"page": "1",
"per_page": "20",
"unread_only": "0",
"type": "general",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get notification statistics
Get notification statistics for the authenticated user.
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/notifications/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/notifications/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Mark all notifications as read
Mark all notifications as read for the authenticated user.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/notifications/mark-all-read" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/notifications/mark-all-read"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Mark notification as read
Mark a specific notification as read for the authenticated user.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/notifications/564/read" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/notifications/564/read"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Mark notification as clicked
Mark a notification as clicked when user taps on it.
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/notifications/564/clicked" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/notifications/564/clicked"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete notification
Delete a notification from user's list.
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/notifications/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/notifications/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Order Returns
Get list of order return requests for the current user
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/order-returns" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/order-returns"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get detail of an order return request
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/order-returns/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/order-returns/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Submit a new order return request
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/order-returns" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"order_id\": 1,
\"return_items\": [
\"architecto\"
],
\"reason\": \"DAMAGED_PRODUCT\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/order-returns"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"order_id": 1,
"return_items": [
"architecto"
],
"reason": "DAMAGED_PRODUCT"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get order information for return request
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/orders/564/returns" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564/returns"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Orders
APIs for order tracking
Get list of orders by customer
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/orders?status=completed&shipping_status=delivered&payment_status=completed&per_page=10" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders"
);
const params = {
"status": "completed",
"shipping_status": "delivered",
"payment_status": "completed",
"per_page": "10",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get order detail
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/orders/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cancel an order
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/orders/564/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"cancellation_reason\": \"OTHER\",
\"cancellation_reason_description\": \"I found a better deal elsewhere\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564/cancel"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"cancellation_reason": "OTHER",
"cancellation_reason_description": "I found a better deal elsewhere"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Print an order invoice
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/orders/564/invoice?type=download&format=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564/invoice"
);
const params = {
"type": "download",
"format": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Upload payment proof for an order
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/orders/564/upload-proof" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "file=@/tmp/php9esjFL" const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564/upload-proof"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('file', document.querySelector('input[name="file"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Download payment proof for an order
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/orders/564/download-proof" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564/download-proof"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Confirm delivery of an order
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/orders/564/confirm-delivery" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/564/confirm-delivery"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Track an order
Track an order by order code and email/phone
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/orders/tracking" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"ORD-12345\",
\"email\": \"[email protected]\",
\"phone\": \"+1234567890\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/orders/tracking"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "ORD-12345",
"email": "[email protected]",
"phone": "+1234567890"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"message": "Order found successfully",
"data": {
"order": {
"id": 1,
"code": "ORD-12345",
"status": "completed",
"amount": 100,
"shipping_amount": 10,
"payment_fee": 5,
"tax_amount": 5,
"sub_total": 90,
"discount_amount": 0,
"payment_id": 1,
"user_id": 1,
"created_at": "2023-08-10T12:34:56.000000Z",
"updated_at": "2023-08-10T12:34:56.000000Z",
"address": {
"id": 1,
"name": "John Doe",
"email": "[email protected]",
"phone": "+1234567890",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"country": "US",
"zip_code": "10001"
},
"products": [
{
"id": 1,
"name": "Product 1",
"price": 90,
"qty": 1
}
],
"histories": [
{
"id": 1,
"action": "create_order",
"description": "Order was created",
"created_at": "2023-08-10T12:34:56.000000Z"
}
],
"shipment": {
"id": 1,
"status": "delivered",
"tracking_id": "SHIP-12345",
"tracking_link": "https://example.com/tracking/SHIP-12345"
},
"payment": {
"id": 1,
"status": "completed",
"payment_channel": "stripe",
"amount": 100
}
}
}
}
Example response (404):
{
"error": true,
"message": "Order not found",
"code": 404
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Page
List pages
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/pages?per_page=16&page=16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/pages"
);
const params = {
"per_page": "16",
"page": "16",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": [
{
"id": 1,
"title": "About Us",
"slug": "about-us",
"content": "This is the about us page content...",
"published_at": "2023-01-01T00:00:00.000000Z"
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get page by ID
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/pages/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/pages/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"id": 1,
"title": "About Us",
"slug": "about-us",
"content": "This is the about us page content...",
"published_at": "2023-01-01T00:00:00.000000Z"
},
"message": null
}
Example response (404):
{
"error": true,
"message": "Not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Product Categories
Get list of product categories
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/product-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"is_featured\": false
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/product-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"is_featured": false
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": [
{
"id": 68,
"name": "Salad Bags",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "salad-bags",
"image_with_sizes": null
},
{
"id": 2,
"name": "Fruits",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 1,
"slug": "fruits",
"image_with_sizes": null
},
{
"id": 3,
"name": "Apples",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "apples",
"image_with_sizes": null
},
{
"id": 15,
"name": "Potatoes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "potatoes",
"image_with_sizes": null
},
{
"id": 25,
"name": "Crisps, Snacks & Nuts",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 24,
"slug": "crisps-snacks-nuts",
"image_with_sizes": null
},
{
"id": 26,
"name": "Crisps & Popcorn",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "crisps-popcorn",
"image_with_sizes": null
},
{
"id": 40,
"name": "Tomatoes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "tomatoes",
"image_with_sizes": null
},
{
"id": 55,
"name": "Ready Meals",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 54,
"slug": "ready-meals",
"image_with_sizes": null
},
{
"id": 56,
"name": "Meals for 1",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "meals-for-1",
"image_with_sizes": null
},
{
"id": 67,
"name": "Salad & Herbs",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 54,
"slug": "salad-herbs",
"image_with_sizes": null
},
{
"id": 69,
"name": "Cucumber",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "cucumber",
"image_with_sizes": null
},
{
"id": 4,
"name": "Bananas",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "bananas",
"image_with_sizes": null
},
{
"id": 14,
"name": "Vegetables",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 1,
"slug": "vegetables",
"image_with_sizes": null
},
{
"id": 16,
"name": "Carrots & Root Vegetables",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "carrots-root-vegetables",
"image_with_sizes": null
},
{
"id": 27,
"name": "Nuts & Seeds",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "nuts-seeds",
"image_with_sizes": null
},
{
"id": 39,
"name": "Tins & Cans",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 24,
"slug": "tins-cans",
"image_with_sizes": null
},
{
"id": 41,
"name": "Baked Beans, Spaghetti",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "baked-beans-spaghetti",
"image_with_sizes": null
},
{
"id": 57,
"name": "Meals for 2",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "meals-for-2",
"image_with_sizes": null
},
{
"id": 70,
"name": "Tomatoes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "tomatoes",
"image_with_sizes": null
},
{
"id": 5,
"name": "Berries",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "berries",
"image_with_sizes": null
},
{
"id": 17,
"name": "Broccoli & Cauliflower",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "broccoli-cauliflower",
"image_with_sizes": null
},
{
"id": 28,
"name": "Lighter Options",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "lighter-options",
"image_with_sizes": null
},
{
"id": 42,
"name": "Fish",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "fish",
"image_with_sizes": null
},
{
"id": 58,
"name": "Indian",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "indian",
"image_with_sizes": null
},
{
"id": 71,
"name": "Lettuce",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "lettuce",
"image_with_sizes": null
},
{
"id": 6,
"name": "Oranges & Easy Peelers",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "oranges-easy-peelers",
"image_with_sizes": null
},
{
"id": 18,
"name": "Cabbage, Spinach & Greens",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "cabbage-spinach-greens",
"image_with_sizes": null
},
{
"id": 29,
"name": "Cereal Bars",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "cereal-bars",
"image_with_sizes": null
},
{
"id": 43,
"name": "Beans & Pulses",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "beans-pulses",
"image_with_sizes": null
},
{
"id": 59,
"name": "Italian",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "italian",
"image_with_sizes": null
},
{
"id": 72,
"name": "Lunch Salad Bowls",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "lunch-salad-bowls",
"image_with_sizes": null
},
{
"id": 7,
"name": "Grapes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "grapes",
"image_with_sizes": null
},
{
"id": 19,
"name": "Onions, Leeks & Garlic",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "onions-leeks-garlic",
"image_with_sizes": null
},
{
"id": 30,
"name": "Breadsticks & Pretzels",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "breadsticks-pretzels",
"image_with_sizes": null
},
{
"id": 44,
"name": "Fruit",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "fruit",
"image_with_sizes": null
},
{
"id": 60,
"name": "Chinese",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "chinese",
"image_with_sizes": null
},
{
"id": 73,
"name": "Lunch Salad Bowls",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "lunch-salad-bowls",
"image_with_sizes": null
},
{
"id": 8,
"name": "Lemons & Limes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "lemons-limes",
"image_with_sizes": null
},
{
"id": 20,
"name": "Mushrooms",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "mushrooms",
"image_with_sizes": null
},
{
"id": 31,
"name": "Fruit Snacking",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "fruit-snacking",
"image_with_sizes": null
},
{
"id": 45,
"name": "Coconut Milk & Cream",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "coconut-milk-cream",
"image_with_sizes": null
},
{
"id": 61,
"name": "Traditional British",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "traditional-british",
"image_with_sizes": null
},
{
"id": 62,
"name": "Thai & Oriental",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "thai-oriental",
"image_with_sizes": null
},
{
"id": 74,
"name": "Fresh Herbs",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "fresh-herbs",
"image_with_sizes": null
},
{
"id": 9,
"name": "Peaches & Nectarines",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "peaches-nectarines",
"image_with_sizes": null
},
{
"id": 21,
"name": "Tomatoes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "tomatoes",
"image_with_sizes": null
},
{
"id": 32,
"name": "Rice & Corn Cakes",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "rice-corn-cakes",
"image_with_sizes": null
},
{
"id": 46,
"name": "Lighter Options",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "lighter-options",
"image_with_sizes": null
},
{
"id": 63,
"name": "Mediterranean & Moroccan",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "mediterranean-moroccan",
"image_with_sizes": null
},
{
"id": 75,
"name": "Avocados",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "avocados",
"image_with_sizes": null
},
{
"id": 10,
"name": "Pears",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "pears",
"image_with_sizes": null
},
{
"id": 22,
"name": "Beans, Peas & Sweetcorn",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "beans-peas-sweetcorn",
"image_with_sizes": null
},
{
"id": 33,
"name": "Protein & Energy Snacks",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "protein-energy-snacks",
"image_with_sizes": null
},
{
"id": 47,
"name": "Olives",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "olives",
"image_with_sizes": null
},
{
"id": 64,
"name": "Mexican & Caribbean",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "mexican-caribbean",
"image_with_sizes": null
},
{
"id": 76,
"name": "Peppers",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "peppers",
"image_with_sizes": null
},
{
"id": 11,
"name": "Melon",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "melon",
"image_with_sizes": null
},
{
"id": 23,
"name": "Freshly Drink Orange Juice",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 14,
"slug": "freshly-drink-orange-juice",
"image_with_sizes": null
},
{
"id": 34,
"name": "Toddler Snacks",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "toddler-snacks",
"image_with_sizes": null
},
{
"id": 48,
"name": "Sweetcorn",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "sweetcorn",
"image_with_sizes": null
},
{
"id": 65,
"name": "Lighter Meals",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "lighter-meals",
"image_with_sizes": null
},
{
"id": 77,
"name": "Coleslaw & Potato Salad",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "coleslaw-potato-salad",
"image_with_sizes": null
},
{
"id": 12,
"name": "Avocados",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "avocados",
"image_with_sizes": null
},
{
"id": 35,
"name": "Meat Snacks",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "meat-snacks",
"image_with_sizes": null
},
{
"id": 49,
"name": "Carrots",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "carrots",
"image_with_sizes": null
},
{
"id": 66,
"name": "Lunch & Veg Pots",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 55,
"slug": "lunch-veg-pots",
"image_with_sizes": null
},
{
"id": 78,
"name": "Spring Onions",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "spring-onions",
"image_with_sizes": null
},
{
"id": 13,
"name": "Plums & Apricots",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 2,
"slug": "plums-apricots",
"image_with_sizes": null
},
{
"id": 36,
"name": "Beans",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "beans",
"image_with_sizes": null
},
{
"id": 50,
"name": "Peas",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "peas",
"image_with_sizes": null
},
{
"id": 79,
"name": "Chilli, Ginger & Garlic",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 67,
"slug": "chilli-ginger-garlic",
"image_with_sizes": null
},
{
"id": 37,
"name": "Lentils",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "lentils",
"image_with_sizes": null
},
{
"id": 51,
"name": "Mixed Vegetables",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 39,
"slug": "mixed-vegetables",
"image_with_sizes": null
},
{
"id": 38,
"name": "Chickpeas",
"icon": null,
"icon_image": null,
"is_featured": false,
"parent_id": 25,
"slug": "chickpeas",
"image_with_sizes": null
}
],
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get product category details by slug
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/product-categories/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/product-categories/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": ""
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get products by category
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/product-categories/564/products" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/product-categories/564/products"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "No query results for model [Botble\\Ecommerce\\Models\\ProductCategory] 564"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Products
Get list of products
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/products?sort_by=architecto&price_ranges=%5B%7B%22from%22%3A10%2C%22to%22%3A20%7D%2C%7B%22from%22%3A30%2C%22to%22%3A40%7D%5D&attributes=%5B%7B%22id%22%3A1%2C%22value%22%3A1%7D%2C%7B%22id%22%3A2%2C%22value%22%3A2%7D%5D&thumbnail_size=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/products"
);
const params = {
"sort_by": "architecto",
"price_ranges": "[{"from":10,"to":20},{"from":30,"to":40}]",
"attributes": "[{"id":1,"value":1},{"id":2,"value":2}]",
"thumbnail_size": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"data": [
{
"id": 3,
"slug": "beat-headphone",
"url": "https://farmart.botble.com/products/beat-headphone",
"name": "Beat Headphone",
"sku": "DW-129-A1",
"description": "<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>",
"content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>",
"with_storehouse_management": true,
"quantity": 11,
"is_out_of_stock": false,
"stock_status_label": "In stock",
"stock_status_html": "<span class=\"text-success\">In stock</span>",
"price": 20,
"price_formatted": "$20.00",
"original_price": 20,
"original_price_formatted": "$20.00",
"reviews_avg": 2.71,
"reviews_count": 7,
"images": [
"https://farmart.botble.com/storage/products/3.jpg"
],
"images_thumb": [
"https://farmart.botble.com/storage/products/3-150x150.jpg"
],
"image_with_sizes": {
"origin": [
"https://farmart.botble.com/storage/products/3.jpg"
],
"thumb": [
"https://farmart.botble.com/storage/products/3-150x150.jpg"
],
"small": [
"https://farmart.botble.com/storage/products/3-300x300.jpg"
]
},
"weight": 833,
"height": 20,
"wide": 20,
"length": 19,
"image_url": "https://farmart.botble.com/storage/products/3.jpg",
"product_options": [],
"store": {
"id": 3,
"slug": "young-shop",
"name": "Young Shop"
}
}
],
"links": {
"first": "https://farmart.botble.com/api/v1/ecommerce/products?page=1",
"last": "https://farmart.botble.com/api/v1/ecommerce/products?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"page": null,
"active": false
},
{
"url": "https://farmart.botble.com/api/v1/ecommerce/products?page=1",
"label": "1",
"page": 1,
"active": true
},
{
"url": null,
"label": "Next »",
"page": null,
"active": false
}
],
"path": "https://farmart.botble.com/api/v1/ecommerce/products",
"per_page": 40,
"to": 1,
"total": 1
},
"error": false,
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get product details by slug
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/products/architecto?thumbnail_size=architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/products/architecto"
);
const params = {
"thumbnail_size": "architecto",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": ""
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get related products
Get cross-sale products for a product
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/products/architecto/cross-sale" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/products/architecto/cross-sale"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": ""
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get product's reviews
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/products/architecto/reviews" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/products/architecto/reviews"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": ""
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get product variation by attributes
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/product-variation/564?attributes=" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reference_product\": \"architecto\",
\"attributes\": [
\"architecto\"
]
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/product-variation/564"
);
const params = {
"attributes": "",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reference_product": "architecto",
"attributes": [
"architecto"
]
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Not available"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Profile
Get the user profile information.
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/me" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/me"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update profile
requires authentication
Example request:
curl --request PUT \
"https://farmart.botble.com/api/v1/me" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"bngz\",
\"last_name\": \"miyv\",
\"name\": \"architecto\",
\"phone\": \"architecto\",
\"dob\": \"architecto\",
\"gender\": \"architecto\",
\"description\": \"Eius et animi quos velit et.\",
\"email\": \"[email protected]\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/me"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "bngz",
"last_name": "miyv",
"name": "architecto",
"phone": "architecto",
"dob": "architecto",
"gender": "architecto",
"description": "Eius et animi quos velit et.",
"email": "[email protected]"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update Avatar
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/update/avatar" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "avatar=@/tmp/phpGDgm7f" const url = new URL(
"https://farmart.botble.com/api/v1/update/avatar"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('avatar', document.querySelector('input[name="avatar"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update password
requires authentication
Example request:
curl --request PUT \
"https://farmart.botble.com/api/v1/update/password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"password\": \"|]|{+-\",
\"old_password\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/update/password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"password": "|]|{+-",
"old_password": "architecto"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get user settings
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/settings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/settings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update user settings
requires authentication
Example request:
curl --request PUT \
"https://farmart.botble.com/api/v1/settings" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"biometric_enabled\": false,
\"notification_enabled\": false,
\"language\": \"architecto\",
\"currency\": \"architecto\",
\"theme\": \"architecto\",
\"timezone\": \"Asia\\/Yekaterinburg\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/settings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"biometric_enabled": false,
"notification_enabled": false,
"language": "architecto",
"currency": "architecto",
"theme": "architecto",
"timezone": "Asia\/Yekaterinburg"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Reviews
Get list of reviews for the current user
requires authentication
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/reviews" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/reviews"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": true,
"data": null,
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Create a new review
requires authentication
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/reviews" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1,
\"star\": 5,
\"comment\": \"This is a great product! I highly recommend it.\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/reviews"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1,
"star": 5,
"comment": "This is a great product! I highly recommend it."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a review
requires authentication
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/ecommerce/reviews/564" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/reviews/564"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Simple Slider
Get sliders
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/simple-sliders?keys[]=home-slider&keys[]=product-slider" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"keys\": [
\"home-slider\",
\"product-slider\"
]
}"
const url = new URL(
"https://farmart.botble.com/api/v1/simple-sliders"
);
const params = {
"keys[0]": "home-slider",
"keys[1]": "product-slider",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"keys": [
"home-slider",
"product-slider"
]
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"error": false,
"data": [
{
"id": 1,
"name": "Home slider",
"key": "home-slider",
"description": "The main slider on homepage",
"items": [
{
"id": 1,
"title": "Slider 1",
"description": null,
"image": "https://farmart.botble.com/storage/sliders/01.jpg",
"link": "/products",
"order": 1,
"tablet_image": "sliders/01.jpg",
"mobile_image": "sliders/01-sm.jpg"
},
{
"id": 2,
"title": "Slider 2",
"description": null,
"image": "https://farmart.botble.com/storage/sliders/02.jpg",
"link": "/products",
"order": 2,
"tablet_image": "sliders/02.jpg",
"mobile_image": "sliders/02-sm.jpg"
}
]
}
],
"message": null
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Social Login
Apple login
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/auth/apple" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"identityToken\": \"architecto\",
\"guard\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/auth/apple"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"identityToken": "architecto",
"guard": "architecto"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"token": "1|abc123def456...",
"user": {
"id": 1,
"name": "John Doe",
"email": "[email protected]"
}
},
"message": "Login successful"
}
Example response (400):
{
"error": true,
"message": "Invalid Apple token"
}
Example response (400):
{
"error": true,
"message": "Cannot login, no email or Apple ID provided!"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Google login
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/auth/google" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"identityToken\": \"architecto\",
\"guard\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/auth/google"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"identityToken": "architecto",
"guard": "architecto"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"token": "1|abc123def456...",
"user": {
"id": 1,
"name": "John Doe",
"email": "[email protected]"
}
},
"message": "Login successful"
}
Example response (400):
{
"error": true,
"message": "Invalid Google token"
}
Example response (400):
{
"error": true,
"message": "Google authentication is not properly configured"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Facebook login
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/auth/facebook" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"accessToken\": \"architecto\",
\"guard\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/auth/facebook"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"accessToken": "architecto",
"guard": "architecto"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"token": "1|abc123def456...",
"user": {
"id": 1,
"name": "John Doe",
"email": "[email protected]"
}
},
"message": "Login successful"
}
Example response (400):
{
"error": true,
"message": "Invalid Facebook token"
}
Example response (400):
{
"error": true,
"message": "Facebook authentication is not properly configured"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
X (Twitter) login
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/auth/x" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"accessToken\": \"architecto\",
\"guard\": \"architecto\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/auth/x"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"accessToken": "architecto",
"guard": "architecto"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"error": false,
"data": {
"token": "1|abc123def456...",
"user": {
"id": 1,
"name": "John Doe",
"email": "[email protected]"
}
},
"message": "Login successful"
}
Example response (400):
{
"error": true,
"message": "Invalid X (Twitter) token"
}
Example response (400):
{
"error": true,
"message": "X (Twitter) authentication is not properly configured"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Wishlist
Add product to wishlist
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/wishlist" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/wishlist"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Add product to wishlist
Example request:
curl --request POST \
"https://farmart.botble.com/api/v1/ecommerce/wishlist/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/wishlist/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove a product from wishlist
Example request:
curl --request DELETE \
"https://farmart.botble.com/api/v1/ecommerce/wishlist/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"product_id\": 1
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/wishlist/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"product_id": 1
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get wishlist items
Example request:
curl --request GET \
--get "https://farmart.botble.com/api/v1/ecommerce/wishlist/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": \"e70c6c88dae8344b03e39bb147eba66a\"
}"
const url = new URL(
"https://farmart.botble.com/api/v1/ecommerce/wishlist/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": "e70c6c88dae8344b03e39bb147eba66a"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"id": "architecto",
"data": {
"count": 0,
"items": []
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.