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 Management
Get user profile
requires authentication
Get the authenticated user's profile information.
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/profile" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/profile"
);
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 profile
requires authentication
Update the authenticated user's profile information.
Example request:
curl --request PUT \
"http://jobcy.test/api/v1/account/profile" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"John\",
\"last_name\": \"Doe\",
\"phone\": \"+1234567890\",
\"dob\": \"1990-01-01\",
\"address\": \"123 Main St, City, State\",
\"gender\": \"male\",
\"description\": \"Experienced software developer...\",
\"bio\": \"Passionate about technology...\",
\"country_id\": 1,
\"state_id\": 1,
\"city_id\": 1,
\"locale\": \"en\"
}"
const url = new URL(
"http://jobcy.test/api/v1/account/profile"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "John",
"last_name": "Doe",
"phone": "+1234567890",
"dob": "1990-01-01",
"address": "123 Main St, City, State",
"gender": "male",
"description": "Experienced software developer...",
"bio": "Passionate about technology...",
"country_id": 1,
"state_id": 1,
"city_id": 1,
"locale": "en"
};
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.
POST api/v1/account/avatar
Example request:
curl --request POST \
"http://jobcy.test/api/v1/account/avatar" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "avatar=@/private/var/folders/pv/8ss1l0s14ylczgg_279blg680000gn/T/phpyyG8MY" const url = new URL(
"http://jobcy.test/api/v1/account/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.
GET api/v1/account/applications
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/applications" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/applications"
);
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 api/v1/account/applications/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/applications/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/applications/1562"
);
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.
DELETE api/v1/account/applications/{id}
Example request:
curl --request DELETE \
"http://jobcy.test/api/v1/account/applications/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/applications/1562"
);
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.
GET api/v1/account/saved-jobs
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/saved-jobs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/saved-jobs"
);
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.
POST api/v1/account/saved-jobs/{jobId}
Example request:
curl --request POST \
"http://jobcy.test/api/v1/account/saved-jobs/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/saved-jobs/1562"
);
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 api/v1/account/saved-jobs/{jobId}
Example request:
curl --request DELETE \
"http://jobcy.test/api/v1/account/saved-jobs/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/saved-jobs/1562"
);
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.
GET api/v1/account/companies
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/companies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/companies"
);
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 api/v1/account/jobs
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/jobs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/jobs"
);
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.
POST api/v1/account/jobs
Example request:
curl --request POST \
"http://jobcy.test/api/v1/account/jobs" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"Senior Software Engineer\",
\"description\": \"We are looking for a senior software engineer...\",
\"content\": \"Full job description with requirements...\",
\"status\": \"closed\",
\"salary_type\": \"fixed\",
\"latitude\": \"vmqeopfuudtdsufvy\",
\"longitude\": \"vddqamniihfqcoynl\",
\"zip_code\": \"azghdtqtqxbajwbpi\",
\"number_of_positions\": 2,
\"apply_url\": \"https:\\/\\/www.moen.com\\/quia-ipsam-ut-iusto-iusto-accusamus-iusto-similique\",
\"external_apply_behavior\": \"disabled\",
\"unique_id\": \"consequatur\",
\"company_id\": 1,
\"custom_fields\": [
{
\"name\": \"mqeopfuudtdsufvyvddqa\",
\"value\": \"mniihfqcoynlazghdtqtq\"
}
]
}"
const url = new URL(
"http://jobcy.test/api/v1/account/jobs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "Senior Software Engineer",
"description": "We are looking for a senior software engineer...",
"content": "Full job description with requirements...",
"status": "closed",
"salary_type": "fixed",
"latitude": "vmqeopfuudtdsufvy",
"longitude": "vddqamniihfqcoynl",
"zip_code": "azghdtqtqxbajwbpi",
"number_of_positions": 2,
"apply_url": "https:\/\/www.moen.com\/quia-ipsam-ut-iusto-iusto-accusamus-iusto-similique",
"external_apply_behavior": "disabled",
"unique_id": "consequatur",
"company_id": 1,
"custom_fields": [
{
"name": "mqeopfuudtdsufvyvddqa",
"value": "mniihfqcoynlazghdtqtq"
}
]
};
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.
PUT api/v1/account/jobs/{id}
Example request:
curl --request PUT \
"http://jobcy.test/api/v1/account/jobs/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"Senior Software Engineer\",
\"description\": \"We are looking for a senior software engineer...\",
\"content\": \"Full job description with requirements...\",
\"status\": \"closed\",
\"salary_type\": \"fixed\",
\"latitude\": \"vmqeopfuudtdsufvy\",
\"longitude\": \"vddqamniihfqcoynl\",
\"zip_code\": \"azghdtqtqxbajwbpi\",
\"number_of_positions\": 2,
\"apply_url\": \"https:\\/\\/www.moen.com\\/quia-ipsam-ut-iusto-iusto-accusamus-iusto-similique\",
\"external_apply_behavior\": \"current_tab\",
\"unique_id\": \"consequatur\",
\"company_id\": 1,
\"custom_fields\": [
{
\"name\": \"mqeopfuudtdsufvyvddqa\",
\"value\": \"mniihfqcoynlazghdtqtq\"
}
]
}"
const url = new URL(
"http://jobcy.test/api/v1/account/jobs/1562"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "Senior Software Engineer",
"description": "We are looking for a senior software engineer...",
"content": "Full job description with requirements...",
"status": "closed",
"salary_type": "fixed",
"latitude": "vmqeopfuudtdsufvy",
"longitude": "vddqamniihfqcoynl",
"zip_code": "azghdtqtqxbajwbpi",
"number_of_positions": 2,
"apply_url": "https:\/\/www.moen.com\/quia-ipsam-ut-iusto-iusto-accusamus-iusto-similique",
"external_apply_behavior": "current_tab",
"unique_id": "consequatur",
"company_id": 1,
"custom_fields": [
{
"name": "mqeopfuudtdsufvyvddqa",
"value": "mniihfqcoynlazghdtqtq"
}
]
};
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 api/v1/account/jobs/{id}
Example request:
curl --request DELETE \
"http://jobcy.test/api/v1/account/jobs/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/jobs/1562"
);
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.
GET api/v1/account/transactions
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/transactions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/transactions"
);
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 api/v1/account/invoices
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/invoices" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/invoices"
);
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 api/v1/account/invoices/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/account/invoices/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/account/invoices/1562"
);
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.
Ads
Get ads
Example request:
curl --request GET \
--get "http://jobcy.test/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(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"John\",
\"last_name\": \"Smith\",
\"name\": \"consequatur\",
\"email\": \"qkunze@example.com\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\",
\"phone\": \"consequatur\",
\"password_confirmation\": \"consequatur\"
}"
const url = new URL(
"http://jobcy.test/api/v1/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "John",
"last_name": "Smith",
"name": "consequatur",
"email": "qkunze@example.com",
"password": "O[2UZ5ij-e\/dl4m{o,",
"phone": "consequatur",
"password_confirmation": "consequatur"
};
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 \
"http://jobcy.test/api/v1/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\"
}"
const url = new URL(
"http://jobcy.test/api/v1/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com",
"password": "O[2UZ5ij-e\/dl4m{o,"
};
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 \
"http://jobcy.test/api/v1/email/check" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\"
}"
const url = new URL(
"http://jobcy.test/api/v1/email/check"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com"
};
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 \
"http://jobcy.test/api/v1/password/forgot" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\"
}"
const url = new URL(
"http://jobcy.test/api/v1/password/forgot"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com"
};
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 \
"http://jobcy.test/api/v1/resend-verify-account-email" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\"
}"
const url = new URL(
"http://jobcy.test/api/v1/resend-verify-account-email"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com"
};
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 "http://jobcy.test/api/v1/logout" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 "http://jobcy.test/api/v1/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"q\": \"consequatur\"
}"
const url = new URL(
"http://jobcy.test/api/v1/search"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"q": "consequatur"
};
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": "No results found, please try with different keywords."
}
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 "http://jobcy.test/api/v1/posts" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/posts"
);
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": 1,
"name": "The Top 2020 Handbag Trends to Know",
"slug": "the-top-2020-handbag-trends-to-know",
"description": "At this moment Alice appeared, she was dozing off, and Alice could not taste theirs, and the turtles all advance! They are waiting on the trumpet, and then a row of lamps hanging from the roof.",
"image": "http://jobcy.test/storage/themes/jobcy/news/1.jpg",
"categories": [
{
"id": 1,
"name": "Design",
"slug": "design",
"url": "http://jobcy.test/blog/design",
"description": "Et qui suscipit eius sapiente asperiores sint fuga. Optio et natus quia neque. Soluta modi qui ex eius. Alias nam voluptates temporibus sit."
},
{
"id": 4,
"name": "Healthy",
"slug": "healthy",
"url": "http://jobcy.test/blog/healthy",
"description": "Optio harum dolores enim porro reprehenderit magnam sit. Suscipit odit quia ipsam et ullam necessitatibus. Doloribus ducimus voluptatem voluptatibus nihil."
}
],
"tags": [
{
"id": 1,
"name": "General",
"slug": "general",
"description": null
},
{
"id": 3,
"name": "Fashion",
"slug": "fashion",
"description": null
},
{
"id": 4,
"name": "Branding",
"slug": "branding",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 2,
"name": "Top Search Engine Optimization Strategies!",
"slug": "top-search-engine-optimization-strategies",
"description": "Cat. 'Do you mean \"purpose\"?' said Alice. 'Of course it is,' said the Caterpillar; and it put more simply--\"Never imagine yourself not to make out what she did, she picked her way out. 'I shall do.",
"image": "http://jobcy.test/storage/themes/jobcy/news/2.jpg",
"categories": [
{
"id": 5,
"name": "Travel Tips",
"slug": "travel-tips",
"url": "http://jobcy.test/blog/travel-tips",
"description": "Soluta rem dolor qui sunt aliquam sunt quisquam. Vel autem minima consequuntur vitae repudiandae odio neque molestias. Itaque doloribus corporis est distinctio reprehenderit."
},
{
"id": 6,
"name": "Hotel",
"slug": "hotel",
"url": "http://jobcy.test/blog/hotel",
"description": "Consequatur tenetur minima et. Voluptatem autem explicabo voluptatem itaque nemo autem. Ad molestiae assumenda dolorem et. Facere odio sunt sit quod."
}
],
"tags": [
{
"id": 1,
"name": "General",
"slug": "general",
"description": null
},
{
"id": 3,
"name": "Fashion",
"slug": "fashion",
"description": null
},
{
"id": 4,
"name": "Branding",
"slug": "branding",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 3,
"name": "Which Company Would You Choose?",
"slug": "which-company-would-you-choose",
"description": "Hatter. 'It isn't directed at all,' said Alice: 'I don't quite understand you,' she said, 'than waste it in less than no time to be sure, this generally happens when you throw them, and just as.",
"image": "http://jobcy.test/storage/themes/jobcy/news/3.jpg",
"categories": [
{
"id": 6,
"name": "Hotel",
"slug": "hotel",
"url": "http://jobcy.test/blog/hotel",
"description": "Consequatur tenetur minima et. Voluptatem autem explicabo voluptatem itaque nemo autem. Ad molestiae assumenda dolorem et. Facere odio sunt sit quod."
}
],
"tags": [
{
"id": 2,
"name": "Design",
"slug": "design",
"description": null
},
{
"id": 3,
"name": "Fashion",
"slug": "fashion",
"description": null
},
{
"id": 5,
"name": "Modern",
"slug": "modern",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 4,
"name": "Used Car Dealer Sales Tricks Exposed",
"slug": "used-car-dealer-sales-tricks-exposed",
"description": "His voice has a timid voice at her rather inquisitively, and seemed not to make ONE respectable person!' Soon her eye fell on a little queer, won't you?' 'Not a bit,' said the Lory positively.",
"image": "http://jobcy.test/storage/themes/jobcy/news/4.jpg",
"categories": [
{
"id": 2,
"name": "Lifestyle",
"slug": "lifestyle",
"url": "http://jobcy.test/blog/lifestyle",
"description": "Sit officiis dolorem eligendi ratione molestias accusantium. Quae consequatur ut et rerum cum sit eveniet magni. Ut deleniti sed ut neque quis. Magnam enim fugit minima iusto voluptatum rerum et."
}
],
"tags": [
{
"id": 1,
"name": "General",
"slug": "general",
"description": null
},
{
"id": 3,
"name": "Fashion",
"slug": "fashion",
"description": null
},
{
"id": 5,
"name": "Modern",
"slug": "modern",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 5,
"name": "20 Ways To Sell Your Product Faster",
"slug": "20-ways-to-sell-your-product-faster",
"description": "I can guess that,' she added aloud. 'Do you take me for asking! No, it'll never do to hold it. As soon as look at the great puzzle!' And she went on, taking first one side and up the fan and a large.",
"image": "http://jobcy.test/storage/themes/jobcy/news/5.jpg",
"categories": [
{
"id": 2,
"name": "Lifestyle",
"slug": "lifestyle",
"url": "http://jobcy.test/blog/lifestyle",
"description": "Sit officiis dolorem eligendi ratione molestias accusantium. Quae consequatur ut et rerum cum sit eveniet magni. Ut deleniti sed ut neque quis. Magnam enim fugit minima iusto voluptatum rerum et."
},
{
"id": 7,
"name": "Nature",
"slug": "nature",
"url": "http://jobcy.test/blog/nature",
"description": "Fugiat velit explicabo architecto qui fugiat perferendis. Molestiae asperiores eum veritatis unde quia cumque."
}
],
"tags": [
{
"id": 2,
"name": "Design",
"slug": "design",
"description": null
},
{
"id": 3,
"name": "Fashion",
"slug": "fashion",
"description": null
},
{
"id": 4,
"name": "Branding",
"slug": "branding",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 6,
"name": "The Secrets Of Rich And Famous Writers",
"slug": "the-secrets-of-rich-and-famous-writers",
"description": "WHAT?' thought Alice to herself, rather sharply; 'I advise you to sit down without being invited,' said the Mock Turtle with a sigh. 'I only took the least notice of her hedgehog. The hedgehog was.",
"image": "http://jobcy.test/storage/themes/jobcy/news/6.jpg",
"categories": [
{
"id": 1,
"name": "Design",
"slug": "design",
"url": "http://jobcy.test/blog/design",
"description": "Et qui suscipit eius sapiente asperiores sint fuga. Optio et natus quia neque. Soluta modi qui ex eius. Alias nam voluptates temporibus sit."
},
{
"id": 5,
"name": "Travel Tips",
"slug": "travel-tips",
"url": "http://jobcy.test/blog/travel-tips",
"description": "Soluta rem dolor qui sunt aliquam sunt quisquam. Vel autem minima consequuntur vitae repudiandae odio neque molestias. Itaque doloribus corporis est distinctio reprehenderit."
}
],
"tags": [
{
"id": 2,
"name": "Design",
"slug": "design",
"description": null
},
{
"id": 4,
"name": "Branding",
"slug": "branding",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 7,
"name": "Imagine Losing 20 Pounds In 14 Days!",
"slug": "imagine-losing-20-pounds-in-14-days",
"description": "Alice. 'And where HAVE my shoulders got to? And oh, my poor little thing grunted in reply (it had left off staring at the house, and found that it was indeed: she was now about a foot high: then she.",
"image": "http://jobcy.test/storage/themes/jobcy/news/7.jpg",
"categories": [
{
"id": 2,
"name": "Lifestyle",
"slug": "lifestyle",
"url": "http://jobcy.test/blog/lifestyle",
"description": "Sit officiis dolorem eligendi ratione molestias accusantium. Quae consequatur ut et rerum cum sit eveniet magni. Ut deleniti sed ut neque quis. Magnam enim fugit minima iusto voluptatum rerum et."
},
{
"id": 4,
"name": "Healthy",
"slug": "healthy",
"url": "http://jobcy.test/blog/healthy",
"description": "Optio harum dolores enim porro reprehenderit magnam sit. Suscipit odit quia ipsam et ullam necessitatibus. Doloribus ducimus voluptatem voluptatibus nihil."
}
],
"tags": [
{
"id": 1,
"name": "General",
"slug": "general",
"description": null
},
{
"id": 3,
"name": "Fashion",
"slug": "fashion",
"description": null
},
{
"id": 5,
"name": "Modern",
"slug": "modern",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 8,
"name": "Are You Still Using That Slow, Old Typewriter?",
"slug": "are-you-still-using-that-slow-old-typewriter",
"description": "So Bill's got to see what the next witness. It quite makes my forehead ache!' Alice watched the White Rabbit blew three blasts on the back. At last the Mock Turtle sighed deeply, and began, in a low.",
"image": "http://jobcy.test/storage/themes/jobcy/news/8.jpg",
"categories": [
{
"id": 1,
"name": "Design",
"slug": "design",
"url": "http://jobcy.test/blog/design",
"description": "Et qui suscipit eius sapiente asperiores sint fuga. Optio et natus quia neque. Soluta modi qui ex eius. Alias nam voluptates temporibus sit."
}
],
"tags": [
{
"id": 4,
"name": "Branding",
"slug": "branding",
"description": null
},
{
"id": 5,
"name": "Modern",
"slug": "modern",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 9,
"name": "A Skin Cream That’s Proven To Work",
"slug": "a-skin-cream-thats-proven-to-work",
"description": "CAN have happened to you? Tell us all about it!' Last came a rumbling of little cartwheels, and the poor little thing was waving its right paw round, 'lives a Hatter: and in another moment down went.",
"image": "http://jobcy.test/storage/themes/jobcy/news/9.jpg",
"categories": [
{
"id": 5,
"name": "Travel Tips",
"slug": "travel-tips",
"url": "http://jobcy.test/blog/travel-tips",
"description": "Soluta rem dolor qui sunt aliquam sunt quisquam. Vel autem minima consequuntur vitae repudiandae odio neque molestias. Itaque doloribus corporis est distinctio reprehenderit."
},
{
"id": 6,
"name": "Hotel",
"slug": "hotel",
"url": "http://jobcy.test/blog/hotel",
"description": "Consequatur tenetur minima et. Voluptatem autem explicabo voluptatem itaque nemo autem. Ad molestiae assumenda dolorem et. Facere odio sunt sit quod."
}
],
"tags": [
{
"id": 2,
"name": "Design",
"slug": "design",
"description": null
},
{
"id": 5,
"name": "Modern",
"slug": "modern",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
},
{
"id": 10,
"name": "10 Reasons To Start Your Own, Profitable Website!",
"slug": "10-reasons-to-start-your-own-profitable-website",
"description": "And he got up and beg for its dinner, and all her knowledge of history, Alice had no idea how to spell 'stupid,' and that if something wasn't done about it in with the tea,' the Hatter went on in.",
"image": "http://jobcy.test/storage/themes/jobcy/news/10.jpg",
"categories": [
{
"id": 4,
"name": "Healthy",
"slug": "healthy",
"url": "http://jobcy.test/blog/healthy",
"description": "Optio harum dolores enim porro reprehenderit magnam sit. Suscipit odit quia ipsam et ullam necessitatibus. Doloribus ducimus voluptatem voluptatibus nihil."
},
{
"id": 6,
"name": "Hotel",
"slug": "hotel",
"url": "http://jobcy.test/blog/hotel",
"description": "Consequatur tenetur minima et. Voluptatem autem explicabo voluptatem itaque nemo autem. Ad molestiae assumenda dolorem et. Facere odio sunt sit quod."
}
],
"tags": [
{
"id": 1,
"name": "General",
"slug": "general",
"description": null
},
{
"id": 2,
"name": "Design",
"slug": "design",
"description": null
}
],
"created_at": "2025-07-04T05:00:03.000000Z",
"updated_at": "2025-07-04T05:00:03.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/posts?page=1",
"last": "http://jobcy.test/api/v1/posts?page=2",
"prev": null,
"next": "http://jobcy.test/api/v1/posts?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/posts?page=1",
"label": "1",
"active": true
},
{
"url": "http://jobcy.test/api/v1/posts?page=2",
"label": "2",
"active": false
},
{
"url": "http://jobcy.test/api/v1/posts?page=2",
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/posts",
"per_page": 10,
"to": 10,
"total": 16
},
"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.
Filters posts
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/posts/filters?page=17&per_page=17&search=consequatur&after=consequatur&author=consequatur&author_exclude=consequatur&before=consequatur&exclude=consequatur&include=consequatur&order=consequatur&order_by=consequatur&categories=consequatur&categories_exclude=consequatur&tags=consequatur&tags_exclude=consequatur&featured=consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/posts/filters"
);
const params = {
"page": "17",
"per_page": "17",
"search": "consequatur",
"after": "consequatur",
"author": "consequatur",
"author_exclude": "consequatur",
"before": "consequatur",
"exclude": "consequatur",
"include": "consequatur",
"order": "consequatur",
"order_by": "consequatur",
"categories": "consequatur",
"categories_exclude": "consequatur",
"tags": "consequatur",
"tags_exclude": "consequatur",
"featured": "consequatur",
};
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": "http://jobcy.test/api/v1/posts/filters?page=1",
"last": "http://jobcy.test/api/v1/posts/filters?page=1",
"prev": "http://jobcy.test/api/v1/posts/filters?page=16",
"next": null
},
"meta": {
"current_page": 17,
"from": null,
"last_page": 1,
"links": [
{
"url": "http://jobcy.test/api/v1/posts/filters?page=16",
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/posts/filters?page=1",
"label": "1",
"active": false
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/posts/filters",
"per_page": 17,
"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 "http://jobcy.test/api/v1/posts/consequatur?slug=consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/posts/consequatur"
);
const params = {
"slug": "consequatur",
};
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 "http://jobcy.test/api/v1/categories/filters" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/categories/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": [
{
"id": 3,
"name": "Travel Tips",
"slug": "travel-tips",
"url": "http://jobcy.test/blog/travel-tips",
"description": "A quis porro nostrum necessitatibus dolorum voluptas. Aliquam ea velit est minus quia quam."
},
{
"id": 5,
"name": "Travel Tips",
"slug": "travel-tips",
"url": "http://jobcy.test/blog/travel-tips",
"description": "Soluta rem dolor qui sunt aliquam sunt quisquam. Vel autem minima consequuntur vitae repudiandae odio neque molestias. Itaque doloribus corporis est distinctio reprehenderit."
},
{
"id": 7,
"name": "Nature",
"slug": "nature",
"url": "http://jobcy.test/blog/nature",
"description": "Fugiat velit explicabo architecto qui fugiat perferendis. Molestiae asperiores eum veritatis unde quia cumque."
},
{
"id": 2,
"name": "Lifestyle",
"slug": "lifestyle",
"url": "http://jobcy.test/blog/lifestyle",
"description": "Sit officiis dolorem eligendi ratione molestias accusantium. Quae consequatur ut et rerum cum sit eveniet magni. Ut deleniti sed ut neque quis. Magnam enim fugit minima iusto voluptatum rerum et."
},
{
"id": 6,
"name": "Hotel",
"slug": "hotel",
"url": "http://jobcy.test/blog/hotel",
"description": "Consequatur tenetur minima et. Voluptatem autem explicabo voluptatem itaque nemo autem. Ad molestiae assumenda dolorem et. Facere odio sunt sit quod."
},
{
"id": 4,
"name": "Healthy",
"slug": "healthy",
"url": "http://jobcy.test/blog/healthy",
"description": "Optio harum dolores enim porro reprehenderit magnam sit. Suscipit odit quia ipsam et ullam necessitatibus. Doloribus ducimus voluptatem voluptatibus nihil."
},
{
"id": 1,
"name": "Design",
"slug": "design",
"url": "http://jobcy.test/blog/design",
"description": "Et qui suscipit eius sapiente asperiores sint fuga. Optio et natus quia neque. Soluta modi qui ex eius. Alias nam voluptates temporibus sit."
}
],
"links": {
"first": "http://jobcy.test/api/v1/categories/filters?page=1",
"last": "http://jobcy.test/api/v1/categories/filters?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/categories/filters?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/categories/filters",
"per_page": 10,
"to": 7,
"total": 7
},
"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 category by slug
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/categories/consequatur?slug=consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/categories/consequatur"
);
const params = {
"slug": "consequatur",
};
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.
Companies
GET api/v1/companies
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/companies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/companies"
);
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": 8,
"name": "Adobe",
"description": "Nam in natus nam maiores repellat voluptas illum. Ad sint in laborum ullam. Beatae mollitia dolorem at nemo ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9751 Bettye Court Apt. 400\nNorth Malinda, MD 53948",
"email": null,
"phone": "+13805558355",
"website": "https://www.adobe.com",
"year_founded": 2014,
"number_of_offices": 6,
"number_of_employees": 1,
"annual_revenue": "2M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/8.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/8.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/adobe",
"latitude": "42.538077",
"longitude": "-74.973871",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 2,
"created_at": "2025-06-16T11:15:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 1,
"name": "France",
"code": "FRA"
},
"state": {
"id": 1,
"name": "France"
},
"city": {
"id": 1,
"name": "Paris"
}
},
{
"id": 7,
"name": "Apple",
"description": "Doloremque ducimus nihil autem quidem autem. Pariatur eligendi velit laboriosam consequatur. Non nisi blanditiis perferendis dolore.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "343 Grady Junction\nWest Chloe, RI 04973-9372",
"email": null,
"phone": "+16267551847",
"website": "https://www.apple.com",
"year_founded": 1999,
"number_of_offices": 5,
"number_of_employees": 5,
"annual_revenue": "3M",
"ceo": "Steve Jobs",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/7.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/7.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/apple",
"latitude": "42.478472",
"longitude": "-75.935329",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 1,
"created_at": "2024-09-06T21:16:31.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
{
"id": 6,
"name": "Behance",
"description": "Consequatur in ducimus qui est et. Est hic est provident quas accusantium. Eaque voluptas tenetur quia sed ipsa enim.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "84560 Bogisich Key Apt. 600\nPort Kobyland, NV 76122",
"email": null,
"phone": "+13077040179",
"website": "https://www.behance.net",
"year_founded": 1981,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/behance",
"latitude": "43.507539",
"longitude": "-76.061554",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 4,
"created_at": "2024-10-15T01:26:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 6,
"name": "Germany",
"code": "DN"
},
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
}
},
{
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 5,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 5,
"name": "Flutter",
"description": "In sed odio beatae ex hic veritatis iusto. Voluptatem eum error fuga a accusantium nobis hic. Autem nam iusto ea iste. Veritatis corrupti eveniet ullam qui.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "19682 Ferry Gardens Apt. 745\nShieldsberg, GA 19203",
"email": null,
"phone": "+14236345198",
"website": "https://flutter.io",
"year_founded": 1991,
"number_of_offices": 1,
"number_of_employees": 1,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/flutter",
"latitude": "43.033787",
"longitude": "-74.895574",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 4,
"created_at": "2025-05-31T00:17:12.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
{
"id": 14,
"name": "Generic",
"description": "Voluptatem quod reprehenderit quia. Veritatis nulla aut rerum ab qui porro temporibus. Perspiciatis ad tenetur adipisci et. Corrupti praesentium fugit quasi quibusdam cumque.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "17336 Ross Extension Apt. 400\nEast Royal, MT 48985-6505",
"email": null,
"phone": "+12039838388",
"website": "https://generic.com",
"year_founded": 1970,
"number_of_offices": 3,
"number_of_employees": 5,
"annual_revenue": "10M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/generic",
"latitude": "42.710053",
"longitude": "-74.868659",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 3,
"created_at": "2024-09-08T05:24:37.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 6,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 2,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
{
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoopVVnYKoLMTgADJJoASpIYJrmQRwRPLIeiopYn8BXc6B4A8xEudYLKDyLZDg/8AAj2+g/Ou6tLG1sIhFaW8cKeiLjP19a8nEZtTpvlprmf4Hu4TIq1ZKVV8q/H/AIB5PbeDNeuVDCxManvK4X9M5/Sry/DvWWHMtmv1kb+i16lRXnyzfEPZJHrQyDCpatv5/wDAPK5Ph7rSDKtayeyyH+oFZV54Y1qxBafT5to6tGA4/wDHc17TRThnFdP3kmKpw/hpL3W0eAUV7Rq3hrTNZVjcW4WY9Jo/lcfj3/GvMvEHhi80GXL/AL21Y4SZRx9COxr1cLmFLEPl2l2PBxuU1sKub4o91+qMSiiivQPLCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAr0XwH4dSOBdYukzI//AB7qR90f3vqe3t9a4GytjeX1varwZpFjB+pxXusMSQQxwxqFjjUKoHYDgV5GbYh04KnHr+R7+Q4SNWq609o7ev8AwB9FFVdS1CHS9OmvZyfLiXOB1J7AfU8V85GLk0lufXSkoxcpbItEgDJOAKpSaxpkLFZNRtEYdmnUH+deR6z4j1DWpmM8zLDn5YEOEA/qfc1k17dLJm1epLXyPm63ESUrUoXXd/5Hu9vfWl3/AMe11BN/1zkDfyqxXgKsyMGVirDkEHBFd34Q8YXDXUem6nKZVkO2KZj8wbsCe+fX/IyxOUypxc6bvY3weewrTVOrHlb69D0Oorq2hvLaS3uIxJFINrKe4qWivJTad0e80mrM8V8Q6LJoWqvasS0R+eJz/Ev+I6VlV6p4/wBOW70D7UF/e2rhs99p4I/kfwryuvrcBiHXoqT3WjPgc0wiwuIcI7PVBRRRXaeeFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAavhrH/CTadu6eev869qrwa0uGtLyC5T70UiyD6g5r3W3njuraK4ibdHKgdT6gjNfP51B88ZdD6vhyouScOt7klcr8QVkPhnKZ2idC/05/riuqqG7tYb20ltrhA8UqlWU+leTQqKlVjN9Ge7iqLrUZU090eDUV0uveDL/AEl3lgRrq06h0GWUf7Q/r0+lc1X2NKtCrHmg7o/Pa9CpQnyVFZhSqzI4ZSQynII7GkorUxPa7fxDpUltE8mp2SuyAspnUEHHTrUn9vaP/wBBWx/8CE/xrxCivGeTU/5mfRLiKql8CPYNb1fSbnQr+FdTsnd7dwqidSSdpxgZ9a8fooruwmEWGi4p3ueZj8fLGSUpRtYKKKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACu/wDAniREVdHvH28/6O7H1/g/w/L0rgKAcHI61z4nDxxFNwkdWDxc8LVVSH/Do9/orzrw748aBUtNXLOg4W4Ayw/3h3+vX616Bb3MF3As1vMksTdGRsivlcRhamHlaa+fQ+5wmOo4qN6b17dUS1j6l4X0jVSWntFWU/8ALWL5G/Tr+Oa2KKxhUnB3g7M6KlKFWPLUSa8zzzUPhvKuW0+9Vx2jnGD/AN9D/AVyWo6JqWlNi9tJI1zgPjKn8RxXuFIyq6lXUMpGCCMg16VHNq0NJ+8vxPHxGQ4eprT91/ev6+Z4DRXqWteA7C/DS2GLO464A/dt+Hb8PyrznUtLvNJujb3kJjfseoYeoPcV7eGxtLEL3Xr2Pm8Zl1fCP31dd1sU6KKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKt2Gp3umTebZXMkLd9p4P1HQ/jVSiplFSVmroqMpQfNF2Z3mm/EeRdqanaBx3lg4P/AHyeP1Fdbp/iXSNTwtvexiQ/8s5Pkb8j1/CvFqK86tlVCprH3Wexh89xNLSfvLz3+89/orxnS/FOraSVWG5aSEf8spfmX8O4/CvRfD3i20139yV8i8AyYmOQ3up7/SvHxOXVaC5t0fQYPN6GJah8Muz/AEZ0NUdW0i11mxa1ukyDyjj7yH1FXqK4YycWpRdmj05wjOLjJXTPDdW0ufR9Rls7gfMhyrDo69iKpV6d8QtMW40hNQVf3tswDH1Rjj+eP1rzGvrsFiPrFFTe/U+AzHCfVcQ6a23XoFFFFdZwhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHceB9D0rV9PuXvrUTSxy4B3sMAgehHvXU/8ACF+Hv+gcP+/r/wDxVcl8Ob4Q6pc2THH2iMMvuy9vyJ/KvS6+YzCrWp4iSUml6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 7,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 2,
"name": "England",
"code": "UK"
},
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
}
},
{
"id": 1,
"name": "Pinterest",
"description": "Aut a amet aut. Voluptatem aut velit voluptas unde veritatis et. Reprehenderit iure dolor et qui non quisquam ullam saepe.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "123 Ortiz Street\nJustusmouth, OH 66974-6163",
"email": null,
"phone": "+15674985025",
"website": "https://www.pinterest.com",
"year_founded": 2013,
"number_of_offices": 10,
"number_of_employees": 7,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/pinterest",
"latitude": "42.518176",
"longitude": "-74.943124",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 1,
"created_at": "2025-02-27T09:02:27.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 5,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
{
"id": 4,
"name": "Uber",
"description": "Placeat eaque in error blanditiis eos veniam. Est rerum aut eius et illo dolore. Nostrum error ducimus qui velit. Aut fugit harum repellendus sit vel accusantium sunt.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "82419 Cruz Forge Apt. 752\nEast Rosendostad, LA 45373",
"email": null,
"phone": "+17549839043",
"website": "https://www.uber.com",
"year_founded": 1997,
"number_of_offices": 3,
"number_of_employees": 4,
"annual_revenue": "10M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/uber",
"latitude": "43.904399",
"longitude": "-75.12099",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 1,
"created_at": "2025-01-23T19:17:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 1,
"name": "France",
"code": "FRA"
},
"state": {
"id": 1,
"name": "France"
},
"city": {
"id": 1,
"name": "Paris"
}
}
],
"links": {
"first": "http://jobcy.test/api/v1/companies?page=1",
"last": "http://jobcy.test/api/v1/companies?page=2",
"prev": null,
"next": "http://jobcy.test/api/v1/companies?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/companies?page=1",
"label": "1",
"active": true
},
{
"url": "http://jobcy.test/api/v1/companies?page=2",
"label": "2",
"active": false
},
{
"url": "http://jobcy.test/api/v1/companies?page=2",
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/companies",
"per_page": 12,
"to": 12,
"total": 16
},
"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 api/v1/companies/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/companies/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/companies/1562"
);
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": "Company 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.
GET api/v1/companies/{id}/jobs
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/companies/1562/jobs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/companies/1562/jobs"
);
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": "Company 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.
GET api/v1/companies/featured
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/companies/featured" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/companies/featured"
);
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": 8,
"name": "Adobe",
"description": "Nam in natus nam maiores repellat voluptas illum. Ad sint in laborum ullam. Beatae mollitia dolorem at nemo ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9751 Bettye Court Apt. 400\nNorth Malinda, MD 53948",
"email": null,
"phone": "+13805558355",
"website": "https://www.adobe.com",
"year_founded": 2014,
"number_of_offices": 6,
"number_of_employees": 1,
"annual_revenue": "2M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/8.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/8.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/adobe",
"latitude": "42.538077",
"longitude": "-74.973871",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 2,
"created_at": "2025-06-16T11:15:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 1,
"name": "France",
"code": "FRA"
},
"state": {
"id": 1,
"name": "France"
},
"city": {
"id": 1,
"name": "Paris"
}
},
{
"id": 5,
"name": "Flutter",
"description": "In sed odio beatae ex hic veritatis iusto. Voluptatem eum error fuga a accusantium nobis hic. Autem nam iusto ea iste. Veritatis corrupti eveniet ullam qui.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "19682 Ferry Gardens Apt. 745\nShieldsberg, GA 19203",
"email": null,
"phone": "+14236345198",
"website": "https://flutter.io",
"year_founded": 1991,
"number_of_offices": 1,
"number_of_employees": 1,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/flutter",
"latitude": "43.033787",
"longitude": "-74.895574",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 4,
"created_at": "2025-05-31T00:17:12.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
{
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 5,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
{
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 6,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 5,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 1,
"name": "Pinterest",
"description": "Aut a amet aut. Voluptatem aut velit voluptas unde veritatis et. Reprehenderit iure dolor et qui non quisquam ullam saepe.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "123 Ortiz Street\nJustusmouth, OH 66974-6163",
"email": null,
"phone": "+15674985025",
"website": "https://www.pinterest.com",
"year_founded": 2013,
"number_of_offices": 10,
"number_of_employees": 7,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/pinterest",
"latitude": "42.518176",
"longitude": "-74.943124",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 1,
"created_at": "2025-02-27T09:02:27.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
{
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 7,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 2,
"name": "England",
"code": "UK"
},
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
}
},
{
"id": 4,
"name": "Uber",
"description": "Placeat eaque in error blanditiis eos veniam. Est rerum aut eius et illo dolore. Nostrum error ducimus qui velit. Aut fugit harum repellendus sit vel accusantium sunt.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "82419 Cruz Forge Apt. 752\nEast Rosendostad, LA 45373",
"email": null,
"phone": "+17549839043",
"website": "https://www.uber.com",
"year_founded": 1997,
"number_of_offices": 3,
"number_of_employees": 4,
"annual_revenue": "10M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoopVVnYKoLMTgADJJoASpIYJrmQRwRPLIeiopYn8BXc6B4A8xEudYLKDyLZDg/8AAj2+g/Ou6tLG1sIhFaW8cKeiLjP19a8nEZtTpvlprmf4Hu4TIq1ZKVV8q/H/AIB5PbeDNeuVDCxManvK4X9M5/Sry/DvWWHMtmv1kb+i16lRXnyzfEPZJHrQyDCpatv5/wDAPK5Ph7rSDKtayeyyH+oFZV54Y1qxBafT5to6tGA4/wDHc17TRThnFdP3kmKpw/hpL3W0eAUV7Rq3hrTNZVjcW4WY9Jo/lcfj3/GvMvEHhi80GXL/AL21Y4SZRx9COxr1cLmFLEPl2l2PBxuU1sKub4o91+qMSiiivQPLCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAr0XwH4dSOBdYukzI//AB7qR90f3vqe3t9a4GytjeX1varwZpFjB+pxXusMSQQxwxqFjjUKoHYDgV5GbYh04KnHr+R7+Q4SNWq609o7ev8AwB9FFVdS1CHS9OmvZyfLiXOB1J7AfU8V85GLk0lufXSkoxcpbItEgDJOAKpSaxpkLFZNRtEYdmnUH+deR6z4j1DWpmM8zLDn5YEOEA/qfc1k17dLJm1epLXyPm63ESUrUoXXd/5Hu9vfWl3/AMe11BN/1zkDfyqxXgKsyMGVirDkEHBFd34Q8YXDXUem6nKZVkO2KZj8wbsCe+fX/IyxOUypxc6bvY3weewrTVOrHlb69D0Oorq2hvLaS3uIxJFINrKe4qWivJTad0e80mrM8V8Q6LJoWqvasS0R+eJz/Ev+I6VlV6p4/wBOW70D7UF/e2rhs99p4I/kfwryuvrcBiHXoqT3WjPgc0wiwuIcI7PVBRRRXaeeFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAavhrH/CTadu6eev869qrwa0uGtLyC5T70UiyD6g5r3W3njuraK4ibdHKgdT6gjNfP51B88ZdD6vhyouScOt7klcr8QVkPhnKZ2idC/05/riuqqG7tYb20ltrhA8UqlWU+leTQqKlVjN9Ge7iqLrUZU090eDUV0uveDL/AEl3lgRrq06h0GWUf7Q/r0+lc1X2NKtCrHmg7o/Pa9CpQnyVFZhSqzI4ZSQynII7GkorUxPa7fxDpUltE8mp2SuyAspnUEHHTrUn9vaP/wBBWx/8CE/xrxCivGeTU/5mfRLiKql8CPYNb1fSbnQr+FdTsnd7dwqidSSdpxgZ9a8fooruwmEWGi4p3ueZj8fLGSUpRtYKKKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACu/wDAniREVdHvH28/6O7H1/g/w/L0rgKAcHI61z4nDxxFNwkdWDxc8LVVSH/Do9/orzrw748aBUtNXLOg4W4Ayw/3h3+vX616Bb3MF3As1vMksTdGRsivlcRhamHlaa+fQ+5wmOo4qN6b17dUS1j6l4X0jVSWntFWU/8ALWL5G/Tr+Oa2KKxhUnB3g7M6KlKFWPLUSa8zzzUPhvKuW0+9Vx2jnGD/AN9D/AVyWo6JqWlNi9tJI1zgPjKn8RxXuFIyq6lXUMpGCCMg16VHNq0NJ+8vxPHxGQ4eprT91/ev6+Z4DRXqWteA7C/DS2GLO464A/dt+Hb8PyrznUtLvNJujb3kJjfseoYeoPcV7eGxtLEL3Xr2Pm8Zl1fCP31dd1sU6KKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKt2Gp3umTebZXMkLd9p4P1HQ/jVSiplFSVmroqMpQfNF2Z3mm/EeRdqanaBx3lg4P/AHyeP1Fdbp/iXSNTwtvexiQ/8s5Pkb8j1/CvFqK86tlVCprH3Wexh89xNLSfvLz3+89/orxnS/FOraSVWG5aSEf8spfmX8O4/CvRfD3i20139yV8i8AyYmOQ3up7/SvHxOXVaC5t0fQYPN6GJah8Muz/AEZ0NUdW0i11mxa1ukyDyjj7yH1FXqK4YycWpRdmj05wjOLjJXTPDdW0ufR9Rls7gfMhyrDo69iKpV6d8QtMW40hNQVf3tswDH1Rjj+eP1rzGvrsFiPrFFTe/U+AzHCfVcQ6a23XoFFFFdZwhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHceB9D0rV9PuXvrUTSxy4B3sMAgehHvXU/8ACF+Hv+gcP+/r/wDxVcl8Ob4Q6pc2THH2iMMvuy9vyJ/KvS6+YzCrWp4iSUml6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/uber",
"latitude": "43.904399",
"longitude": "-75.12099",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 1,
"created_at": "2025-01-23T19:17:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 1,
"name": "France",
"code": "FRA"
},
"state": {
"id": 1,
"name": "France"
},
"city": {
"id": 1,
"name": "Paris"
}
},
{
"id": 6,
"name": "Behance",
"description": "Consequatur in ducimus qui est et. Est hic est provident quas accusantium. Eaque voluptas tenetur quia sed ipsa enim.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "84560 Bogisich Key Apt. 600\nPort Kobyland, NV 76122",
"email": null,
"phone": "+13077040179",
"website": "https://www.behance.net",
"year_founded": 1981,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/behance",
"latitude": "43.507539",
"longitude": "-76.061554",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 4,
"created_at": "2024-10-15T01:26:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 6,
"name": "Germany",
"code": "DN"
},
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
}
},
{
"id": 11,
"name": "WordPress",
"description": "Quidem perspiciatis voluptatibus dolorem est consectetur unde. Quae occaecati est omnis tenetur dolore consequatur sequi nemo.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "145 Turner Lake\nLake Noel, NH 64839-1923",
"email": null,
"phone": "+16806105661",
"website": "https://wordpress.org",
"year_founded": 1999,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "4M",
"ceo": "Matt Mullenweg",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/11.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/11.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/wordpress",
"latitude": "42.740756",
"longitude": "-75.075335",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"active_jobs_count": 2,
"created_at": "2024-10-14T21:41:17.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 6,
"name": "Germany",
"code": "DN"
},
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
}
}
],
"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 api/v1/companies/search
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/companies/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/companies/search"
);
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": 8,
"name": "Adobe",
"description": "Nam in natus nam maiores repellat voluptas illum. Ad sint in laborum ullam. Beatae mollitia dolorem at nemo ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9751 Bettye Court Apt. 400\nNorth Malinda, MD 53948",
"email": null,
"phone": "+13805558355",
"website": "https://www.adobe.com",
"year_founded": 2014,
"number_of_offices": 6,
"number_of_employees": 1,
"annual_revenue": "2M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/8.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/8.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/adobe",
"latitude": "42.538077",
"longitude": "-74.973871",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-06-16T11:15:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 7,
"name": "Apple",
"description": "Doloremque ducimus nihil autem quidem autem. Pariatur eligendi velit laboriosam consequatur. Non nisi blanditiis perferendis dolore.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "343 Grady Junction\nWest Chloe, RI 04973-9372",
"email": null,
"phone": "+16267551847",
"website": "https://www.apple.com",
"year_founded": 1999,
"number_of_offices": 5,
"number_of_employees": 5,
"annual_revenue": "3M",
"ceo": "Steve Jobs",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/7.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/7.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/apple",
"latitude": "42.478472",
"longitude": "-75.935329",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-06T21:16:31.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 6,
"name": "Behance",
"description": "Consequatur in ducimus qui est et. Est hic est provident quas accusantium. Eaque voluptas tenetur quia sed ipsa enim.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "84560 Bogisich Key Apt. 600\nPort Kobyland, NV 76122",
"email": null,
"phone": "+13077040179",
"website": "https://www.behance.net",
"year_founded": 1981,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/behance",
"latitude": "43.507539",
"longitude": "-76.061554",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-10-15T01:26:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 5,
"name": "Flutter",
"description": "In sed odio beatae ex hic veritatis iusto. Voluptatem eum error fuga a accusantium nobis hic. Autem nam iusto ea iste. Veritatis corrupti eveniet ullam qui.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "19682 Ferry Gardens Apt. 745\nShieldsberg, GA 19203",
"email": null,
"phone": "+14236345198",
"website": "https://flutter.io",
"year_founded": 1991,
"number_of_offices": 1,
"number_of_employees": 1,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/flutter",
"latitude": "43.033787",
"longitude": "-74.895574",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-31T00:17:12.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 14,
"name": "Generic",
"description": "Voluptatem quod reprehenderit quia. Veritatis nulla aut rerum ab qui porro temporibus. Perspiciatis ad tenetur adipisci et. Corrupti praesentium fugit quasi quibusdam cumque.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "17336 Ross Extension Apt. 400\nEast Royal, MT 48985-6505",
"email": null,
"phone": "+12039838388",
"website": "https://generic.com",
"year_founded": 1970,
"number_of_offices": 3,
"number_of_employees": 5,
"annual_revenue": "10M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/generic",
"latitude": "42.710053",
"longitude": "-74.868659",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-08T05:24:37.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 1,
"name": "Pinterest",
"description": "Aut a amet aut. Voluptatem aut velit voluptas unde veritatis et. Reprehenderit iure dolor et qui non quisquam ullam saepe.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "123 Ortiz Street\nJustusmouth, OH 66974-6163",
"email": null,
"phone": "+15674985025",
"website": "https://www.pinterest.com",
"year_founded": 2013,
"number_of_offices": 10,
"number_of_employees": 7,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/pinterest",
"latitude": "42.518176",
"longitude": "-74.943124",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-27T09:02:27.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"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.
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 \
"http://jobcy.test/api/v1/device-tokens" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"consequatur\",
\"platform\": \"consequatur\",
\"app_version\": \"consequatur\",
\"device_id\": \"consequatur\",
\"user_type\": \"consequatur\",
\"user_id\": 17
}"
const url = new URL(
"http://jobcy.test/api/v1/device-tokens"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "consequatur",
"platform": "consequatur",
"app_version": "consequatur",
"device_id": "consequatur",
"user_type": "consequatur",
"user_id": 17
};
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 "http://jobcy.test/api/v1/device-tokens" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/device-tokens/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"platform\": \"consequatur\",
\"app_version\": \"consequatur\",
\"device_id\": \"consequatur\"
}"
const url = new URL(
"http://jobcy.test/api/v1/device-tokens/1562"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"platform": "consequatur",
"app_version": "consequatur",
"device_id": "consequatur"
};
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 \
"http://jobcy.test/api/v1/device-tokens/by-token" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"consequatur\"
}"
const url = new URL(
"http://jobcy.test/api/v1/device-tokens/by-token"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "consequatur"
};
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 \
"http://jobcy.test/api/v1/device-tokens/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/device-tokens/1562"
);
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 \
"http://jobcy.test/api/v1/device-tokens/1562/deactivate" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/device-tokens/1562/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.
Endpoints
GET api/v1/categories
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/categories"
);
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": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"active_jobs_count": 51,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Technology",
"description": null,
"url": "http://jobcy.test/job-categories/technology",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 1,
"active_jobs_count": 12,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"active_jobs_count": 15,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"active_jobs_count": 15,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"active_jobs_count": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"active_jobs_count": 14,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"active_jobs_count": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 8,
"name": "Human Resource",
"description": null,
"url": "http://jobcy.test/job-categories/human-resource",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 7,
"active_jobs_count": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"active_jobs_count": 12,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"active_jobs_count": 11,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 11,
"name": "Retail",
"description": null,
"url": "http://jobcy.test/job-categories/retail",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 10,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 12,
"name": "Distribution/Logistics",
"description": null,
"url": "http://jobcy.test/job-categories/distributionlogistics",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 11,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 13,
"name": "Supply Chain Operations",
"description": null,
"url": "http://jobcy.test/job-categories/supply-chain-operations",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 12,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 14,
"name": "Healthcare & Medical",
"description": null,
"url": "http://jobcy.test/job-categories/healthcare-medical",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 13,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 15,
"name": "Procurement / Sourcing",
"description": null,
"url": "http://jobcy.test/job-categories/procurement-sourcing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 14,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 16,
"name": "Information Technology (IT)",
"description": null,
"url": "http://jobcy.test/job-categories/information-technology-it",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 15,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 17,
"name": "Sales/Business Development",
"description": null,
"url": "http://jobcy.test/job-categories/salesbusiness-development",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 16,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 18,
"name": "Legal & Professional Services",
"description": null,
"url": "http://jobcy.test/job-categories/legal-professional-services",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 17,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 19,
"name": "Life Sciences & Healthcare",
"description": null,
"url": "http://jobcy.test/job-categories/life-sciences-healthcare",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 18,
"active_jobs_count": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/categories?page=1",
"last": "http://jobcy.test/api/v1/categories?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/categories?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/categories",
"per_page": 20,
"to": 19,
"total": 19
},
"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 api/v1/tags
GET api/v1/categories/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/categories/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/categories/1562"
);
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.
GET api/v1/categories/{id}/jobs
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/categories/1562/jobs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/categories/1562/jobs"
);
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": "Category 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.
GET api/v1/categories/featured
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/categories/featured" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/categories/featured"
);
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.
GET api/v1/job-types
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-types"
);
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": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Freelance",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Full Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/job-types?page=1",
"last": "http://jobcy.test/api/v1/job-types?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/job-types?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/job-types",
"per_page": 20,
"to": 5,
"total": 5
},
"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 api/v1/job-types/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-types/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-types/1562"
);
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": "Job type 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.
GET api/v1/job-skills
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-skills" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-skills"
);
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": 5,
"name": "CakePHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 1,
"name": "Javascript",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Laravel",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "PHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Python",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Wordpress",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/job-skills?page=1",
"last": "http://jobcy.test/api/v1/job-skills?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/job-skills?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/job-skills",
"per_page": 50,
"to": 6,
"total": 6
},
"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 api/v1/job-skills/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-skills/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-skills/1562"
);
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": "Job skill 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.
GET api/v1/job-experiences
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-experiences" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-experiences"
);
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": 1,
"name": "Fresh",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Less Than 1 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "1 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "2 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "3 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "4 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "5 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 8,
"name": "6 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "7 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "8 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 11,
"name": "9 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 12,
"name": "10 Year",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/job-experiences?page=1",
"last": "http://jobcy.test/api/v1/job-experiences?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/job-experiences?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/job-experiences",
"per_page": 20,
"to": 12,
"total": 12
},
"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 api/v1/job-experiences/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-experiences/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-experiences/1562"
);
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": "Job experience 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.
GET api/v1/career-levels
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/career-levels" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/career-levels"
);
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": 1,
"name": "Department Head",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 2,
"name": "Entry Level",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 3,
"name": "Experienced Professional",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 4,
"name": "GM / CEO / Country Head / President",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 5,
"name": "Intern/Student",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/career-levels?page=1",
"last": "http://jobcy.test/api/v1/career-levels?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/career-levels?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/career-levels",
"per_page": 20,
"to": 5,
"total": 5
},
"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 api/v1/career-levels/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/career-levels/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/career-levels/1562"
);
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": "Career level 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.
GET api/v1/job-shifts
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-shifts" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-shifts"
);
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": 1,
"name": "First Shift (Day)",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Second Shift (Afternoon)",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Third Shift (Night)",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Rotating",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/job-shifts?page=1",
"last": "http://jobcy.test/api/v1/job-shifts?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/job-shifts?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/job-shifts",
"per_page": 20,
"to": 4,
"total": 4
},
"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 api/v1/job-shifts/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-shifts/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-shifts/1562"
);
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": "Job shift 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.
GET api/v1/functional-areas
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/functional-areas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/functional-areas"
);
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": 1,
"name": "Accountant",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 2,
"name": "Accounts, Finance & Financial Services",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 3,
"name": "Admin",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 4,
"name": "Admin Operation",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 5,
"name": "Administration",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 6,
"name": "Administration Clerical",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 7,
"name": "Advertising",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 8,
"name": "Advertising",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 9,
"name": "Advertisement",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 10,
"name": "Architects & Construction",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 11,
"name": "Architecture",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 12,
"name": "Bank Operation",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 13,
"name": "Business Development",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 14,
"name": "Business Management",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 15,
"name": "Business Systems Analyst",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 16,
"name": "Clerical",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 17,
"name": "Client Services & Customer Support",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 18,
"name": "Computer Hardware",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 19,
"name": "Computer Networking",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
},
{
"id": 20,
"name": "Consultant",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:05.000000Z",
"updated_at": "2025-07-04T05:00:05.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/functional-areas?page=1",
"last": "http://jobcy.test/api/v1/functional-areas?page=8",
"prev": null,
"next": "http://jobcy.test/api/v1/functional-areas?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 8,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=1",
"label": "1",
"active": true
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=2",
"label": "2",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=3",
"label": "3",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=4",
"label": "4",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=5",
"label": "5",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=6",
"label": "6",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=7",
"label": "7",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=8",
"label": "8",
"active": false
},
{
"url": "http://jobcy.test/api/v1/functional-areas?page=2",
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/functional-areas",
"per_page": 20,
"to": 20,
"total": 156
},
"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 api/v1/functional-areas/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/functional-areas/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/functional-areas/1562"
);
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": "Functional area 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.
GET api/v1/tags/{id}
GET api/v1/tags/{id}/jobs
GET api/v1/currencies
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/currencies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/currencies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Server Error"
}
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 api/v1/currencies/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/currencies/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/currencies/1562"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Server Error"
}
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 api/v1/packages
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/packages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/packages"
);
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": 1,
"name": "Free Trial",
"description": null,
"is_default": 0,
"price": 0,
"price_text": "$0.00",
"price_per_post_text": "$0.00 / per post",
"percent_save": 0,
"number_of_listings": 1,
"number_posts_free": "Free 1 post(s)",
"price_text_with_sale_off": "$0.00 Total ",
"features": [
"Limited time trial period",
"1 listing allowed",
"Basic support"
]
},
{
"id": 2,
"name": "Basic Listing",
"description": null,
"is_default": 1,
"price": 250,
"price_text": "$250.00",
"price_per_post_text": "$250.00 / per post",
"percent_save": 0,
"number_of_listings": 1,
"number_posts_free": "Free 1 post(s)",
"price_text_with_sale_off": "$250.00 Total ",
"features": [
"1 listing allowed",
"5 photos per listing",
"Basic support"
]
},
{
"id": 3,
"name": "Standard Package",
"description": null,
"is_default": 0,
"price": 1000,
"price_text": "$1,000.00",
"price_per_post_text": "$200.00 / per post",
"percent_save": 20,
"number_of_listings": 5,
"number_posts_free": "Free 5 post(s)",
"price_text_with_sale_off": "$1,000.00 Total ( save 20 %)",
"features": [
"5 listings allowed",
"10 photos per listing",
"Priority support"
]
},
{
"id": 4,
"name": "Professional Package",
"description": null,
"is_default": 0,
"price": 1800,
"price_text": "$1,800.00",
"price_per_post_text": "$180.00 / per post",
"percent_save": 28,
"number_of_listings": 10,
"number_posts_free": "Free 10 post(s)",
"price_text_with_sale_off": "$1,800.00 Total ( save 28 %)",
"features": [
"10 listings allowed",
"15 photos per listing",
"Premium support",
"Featured listings"
]
},
{
"id": 5,
"name": "Premium Package",
"description": null,
"is_default": 0,
"price": 2500,
"price_text": "$2,500.00",
"price_per_post_text": "$166.67 / per post",
"percent_save": 33,
"number_of_listings": 15,
"number_posts_free": "Free 15 post(s)",
"price_text_with_sale_off": "$2,500.00 Total ( save 33 %)",
"features": [
"15 listings allowed",
"20 photos per listing",
"Premium support",
"Featured listings",
"Priority listing placement"
]
}
],
"links": {
"first": "http://jobcy.test/api/v1/packages?page=1",
"last": "http://jobcy.test/api/v1/packages?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/packages?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/packages",
"per_page": 20,
"to": 5,
"total": 5
},
"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 api/v1/packages/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/packages/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/packages/1562"
);
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": "Package 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.
GET api/v1/candidates
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/candidates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/candidates"
);
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": "http://jobcy.test/api/v1/candidates?page=1",
"last": "http://jobcy.test/api/v1/candidates?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": null,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/candidates?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/candidates",
"per_page": 12,
"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 api/v1/candidates/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/candidates/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/candidates/1562"
);
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": "Candidate 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.
GET api/v1/candidates/search
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/candidates/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/candidates/search"
);
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": [],
"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 api/v1/reviews
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/reviews" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/reviews"
);
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": 1,
"star": 3,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 4,
"account": {
"id": 6,
"name": "Alberta Hansen",
"first_name": "Alberta",
"last_name": "Hansen",
"email": "christian.weissnat@harris.net",
"phone": "+18325770454",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/2.jpg",
"dob": "2013-12-16T00:00:00.000000Z",
"gender": null,
"description": "I mean what I eat\".",
"bio": "Alice to herself, 'if one only knew the name of nearly everything there. 'That's the first sentence in her life, and had to be treated with respect. 'Cheshire Puss,' she began, rather timidly, as.",
"address": "236 Pfannerstill Junctions\nKshlerinchester, PA 08842",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-09-02T17:32:50.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 4,
"name": "Uber",
"description": "Placeat eaque in error blanditiis eos veniam. Est rerum aut eius et illo dolore. Nostrum error ducimus qui velit. Aut fugit harum repellendus sit vel accusantium sunt.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "82419 Cruz Forge Apt. 752\nEast Rosendostad, LA 45373",
"email": null,
"phone": "+17549839043",
"website": "https://www.uber.com",
"year_founded": 1997,
"number_of_offices": 3,
"number_of_employees": 4,
"annual_revenue": "10M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/uber",
"latitude": "43.904399",
"longitude": "-75.12099",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-01-23T19:17:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 2,
"star": 5,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 2,
"account": {
"id": null,
"name": " ",
"first_name": "",
"last_name": "",
"email": null,
"phone": null,
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6SiiivkjzwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD//2Q==",
"dob": null,
"gender": null,
"description": null,
"bio": null,
"address": null,
"type": {
"value": null,
"label": ""
},
"credits": 0,
"is_public_profile": null,
"hide_cv": null,
"available_for_hiring": null,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": null,
"updated_at": null
},
"reviewable": {
"id": 2,
"name": "Alyson Labadie",
"first_name": "Alyson",
"last_name": "Labadie",
"email": "job_seeker@botble.com",
"phone": "+19725467429",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/3.jpg",
"dob": "1994-05-10T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "This seemed to quiver all over their heads. She felt very curious thing, and longed to change the subject. 'Go on with the lobsters and the party went back for a few yards off. The Cat seemed to be.",
"address": "943 Hane Villages\nPowlowskitown, MN 58810",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-06-07T21:40:11.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 3,
"star": 4,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 6,
"account": {
"id": 3,
"name": "Sarah Harding",
"first_name": "Sarah",
"last_name": "Harding",
"email": "sarah_harding@botble.com",
"phone": "+13396142088",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Anooorwz5oKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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nnhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAE9ndy2N5DdQHEkTBlr2TStTg1fT47u3PysPmXujdwa8UrU0PXbrQrvzYTvibiSInhh/Q+9dFCt7N2ex1YXEeylZ7M9korN0jXbHWod9rKPMAy0TcOv4f1rSr0001dHtRkpK6Oe1LwZpOou0oja2lbktCcAn3HSsST4bjP7vVMD0aD/AOyrvKKzlQpy1aMZYalJ3cTh4PhxCrAz6k7r6RxBT+ZJrqNL0Sw0eIpZwhWb70jcs31NaFFOFKENYocKFOm7xQUUVgeIfFNrosTRIVmvSPliB+77t6fTrVSkoq7NJzjBc0mZHxA1ZY7WLS42zJIRJLjso6D8Tz+Fee1NdXU17dSXNw5eWQ7mY96hryqtT2kuY8GvVdWbkFFFFZGQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAOjkkhkWSJ2R1OQynBH4102n+O9UtAEuAl2g/v8ADfmP6g1y9FXGcofCy4VJwd4ux6TbfELTZABcW1xC3sAw/PIP6VfXxtoLDm8ZfYwv/QV5PRW6xdRHSsdVXY9XfxtoKji7d/ZYm/qKoXPxD0+MEW1rcTN/tYQfnyf0rzeih4uoweOqvayOl1Lxvqt+pjhZbSI9ovvH/gX+GK5sksxJJJPJJ70lFYSnKTvJnNOpKbvJ3CiiioICiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1970-01-09T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "I must be a book of rules for shutting people up like a snout than a pig, and she felt that there was a good opportunity for croqueting one of them even when they passed too close, and waving their.",
"address": "634 Brooke Plains Suite 076\nWest Curtis, MI 92699-4247",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-10-19T23:55:55.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 6,
"name": "Behance",
"description": "Consequatur in ducimus qui est et. Est hic est provident quas accusantium. Eaque voluptas tenetur quia sed ipsa enim.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "84560 Bogisich Key Apt. 600\nPort Kobyland, NV 76122",
"email": null,
"phone": "+13077040179",
"website": "https://www.behance.net",
"year_founded": 1981,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/6.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/behance",
"latitude": "43.507539",
"longitude": "-76.061554",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-10-15T01:26:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 4,
"star": 2,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 4,
"account": {
"id": 5,
"name": "William Kennedy",
"first_name": "William",
"last_name": "Kennedy",
"email": "wiliam_kend@botble.com",
"phone": "+13144612263",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax6KKK9A/PQooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK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sQ+n3j+i4/GlFXaReIqeypSn2R4uzM7lmJLMcknuaSiiu8+DCvV/hVfebpF7Yk8wTCQfRh/ip/OvKK7P4Z332bxT9nJ+W6hZMf7Q+YfoD+dZ1VeLO/LKvs8VHz0+89kooorjPswrwXxle/b/ABdqMoOVWXyl+iDb/Svc725Wysbi6f7sMbSH6AZ/pXzjJI0sryOcu5LMfUmt6C1bPBz2paEKffUbRRRXSfNhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHQ+E/FL+F7q4lFr9pSdApTzNmCDwc4Pqfzrq/+Ft/9QT/AMm//sK8zoqHTi3do7KOPxFGHJTlZei/yPTP+Ft/9QT/AMm//sK5rxb4wfxQtqn2P7KkBY7fN37icc9B0x+tcxRQqcU7pDq5hiasHCcrp+S/yCiiirOIKt6Vfvpeq2t/Gu5oJFfbnG4A8jPuOKqUUDjJxaa3R6Z/wtv/AKgn/k3/APYUf8Lb/wCoJ/5N/wD2FeZ0Vn7KHY9D+1cX/P8Agv8AI73WviW+raPdWCaX5BnTZ5n2jdgZ542jtkde9cFRRVRio7HLXxNWvJSqu7CiiiqMAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1992-05-16T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Father William replied to his son, 'I feared it might appear to others that what you mean,' the March Hare had just begun to think to herself, 'Which way? Which way?', holding her hand on the.",
"address": "2027 Darrell Trafficway\nSouth Kristofferfurt, KS 86428",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-07-17T00:00:15.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 5,
"star": 4,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 5,
"account": {
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
"reviewable": {
"id": 5,
"name": "Flutter",
"description": "In sed odio beatae ex hic veritatis iusto. Voluptatem eum error fuga a accusantium nobis hic. Autem nam iusto ea iste. Veritatis corrupti eveniet ullam qui.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "19682 Ferry Gardens Apt. 745\nShieldsberg, GA 19203",
"email": null,
"phone": "+14236345198",
"website": "https://flutter.io",
"year_founded": 1991,
"number_of_offices": 1,
"number_of_employees": 1,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/flutter",
"latitude": "43.033787",
"longitude": "-74.895574",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-31T00:17:12.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 6,
"star": 1,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 8,
"account": {
"id": null,
"name": " ",
"first_name": "",
"last_name": "",
"email": null,
"phone": null,
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6SiiivkjzwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD//2Q==",
"dob": null,
"gender": null,
"description": null,
"bio": null,
"address": null,
"type": {
"value": null,
"label": ""
},
"credits": 0,
"is_public_profile": null,
"hide_cv": null,
"available_for_hiring": null,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": null,
"updated_at": null
},
"reviewable": {
"id": 8,
"name": "Lilyan Romaguera",
"first_name": "Lilyan",
"last_name": "Romaguera",
"email": "lorine77@hodkiewicz.info",
"phone": "+12252943743",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2011-09-24T00:00:00.000000Z",
"gender": null,
"description": "Yet you balanced.",
"bio": "ALL RETURNED FROM HIM TO YOU,\"' said Alice. 'Oh, don't talk about cats or dogs either, if you please! \"William the Conqueror, whose cause was favoured by the officers of the March Hare and his.",
"address": "5106 Justine Spring Suite 295\nReingerberg, PA 48927",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-02-16T17:33:19.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 7,
"star": 1,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 2,
"account": {
"id": 10,
"name": "Emilie Denesik",
"first_name": "Emilie",
"last_name": "Denesik",
"email": "wallace.schuster@crooks.com",
"phone": "+16784544405",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/5.jpg",
"dob": "2009-12-20T00:00:00.000000Z",
"gender": null,
"description": "Hatter: 'it's very.",
"bio": "Duchess, as she remembered trying to make personal remarks,' Alice said nothing: she had peeped into the garden door. Poor Alice! It was so small as this before, never! And I declare it's too bad.",
"address": "633 Hudson Passage Apt. 765\nBlandaville, IA 77467-4968",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-09-06T16:11:49.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"reviewable": {
"id": 2,
"name": "Alyson Labadie",
"first_name": "Alyson",
"last_name": "Labadie",
"email": "job_seeker@botble.com",
"phone": "+19725467429",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/3.jpg",
"dob": "1994-05-10T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "This seemed to quiver all over their heads. She felt very curious thing, and longed to change the subject. 'Go on with the lobsters and the party went back for a few yards off. The Cat seemed to be.",
"address": "943 Hane Villages\nPowlowskitown, MN 58810",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-06-07T21:40:11.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 8,
"star": 5,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 5,
"account": {
"id": null,
"name": " ",
"first_name": "",
"last_name": "",
"email": null,
"phone": null,
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6SiiivkjzwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD//2Q==",
"dob": null,
"gender": null,
"description": null,
"bio": null,
"address": null,
"type": {
"value": null,
"label": ""
},
"credits": 0,
"is_public_profile": null,
"hide_cv": null,
"available_for_hiring": null,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": null,
"updated_at": null
},
"reviewable": {
"id": 5,
"name": "William Kennedy",
"first_name": "William",
"last_name": "Kennedy",
"email": "wiliam_kend@botble.com",
"phone": "+13144612263",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax6KKK9A/PQooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK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sQ+n3j+i4/GlFXaReIqeypSn2R4uzM7lmJLMcknuaSiiu8+DCvV/hVfebpF7Yk8wTCQfRh/ip/OvKK7P4Z332bxT9nJ+W6hZMf7Q+YfoD+dZ1VeLO/LKvs8VHz0+89kooorjPswrwXxle/b/ABdqMoOVWXyl+iDb/Svc725Wysbi6f7sMbSH6AZ/pXzjJI0sryOcu5LMfUmt6C1bPBz2paEKffUbRRRXSfNhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHQ+E/FL+F7q4lFr9pSdApTzNmCDwc4Pqfzrq/+Ft/9QT/AMm//sK8zoqHTi3do7KOPxFGHJTlZei/yPTP+Ft/9QT/AMm//sK5rxb4wfxQtqn2P7KkBY7fN37icc9B0x+tcxRQqcU7pDq5hiasHCcrp+S/yCiiirOIKt6Vfvpeq2t/Gu5oJFfbnG4A8jPuOKqUUDjJxaa3R6Z/wtv/AKgn/k3/APYUf8Lb/wCoJ/5N/wD2FeZ0Vn7KHY9D+1cX/P8Agv8AI73WviW+raPdWCaX5BnTZ5n2jdgZ542jtkde9cFRRVRio7HLXxNWvJSqu7CiiiqMAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1992-05-16T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Father William replied to his son, 'I feared it might appear to others that what you mean,' the March Hare had just begun to think to herself, 'Which way? Which way?', holding her hand on the.",
"address": "2027 Darrell Trafficway\nSouth Kristofferfurt, KS 86428",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-07-17T00:00:15.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 9,
"star": 3,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 4,
"account": {
"id": 8,
"name": "Lilyan Romaguera",
"first_name": "Lilyan",
"last_name": "Romaguera",
"email": "lorine77@hodkiewicz.info",
"phone": "+12252943743",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2011-09-24T00:00:00.000000Z",
"gender": null,
"description": "Yet you balanced.",
"bio": "ALL RETURNED FROM HIM TO YOU,\"' said Alice. 'Oh, don't talk about cats or dogs either, if you please! \"William the Conqueror, whose cause was favoured by the officers of the March Hare and his.",
"address": "5106 Justine Spring Suite 295\nReingerberg, PA 48927",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-02-16T17:33:19.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"reviewable": {
"id": 4,
"name": "Uber",
"description": "Placeat eaque in error blanditiis eos veniam. Est rerum aut eius et illo dolore. Nostrum error ducimus qui velit. Aut fugit harum repellendus sit vel accusantium sunt.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "82419 Cruz Forge Apt. 752\nEast Rosendostad, LA 45373",
"email": null,
"phone": "+17549839043",
"website": "https://www.uber.com",
"year_founded": 1997,
"number_of_offices": 3,
"number_of_employees": 4,
"annual_revenue": "10M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/uber",
"latitude": "43.904399",
"longitude": "-75.12099",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-01-23T19:17:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 10,
"star": 2,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 9,
"account": {
"id": 2,
"name": "Alyson Labadie",
"first_name": "Alyson",
"last_name": "Labadie",
"email": "job_seeker@botble.com",
"phone": "+19725467429",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/3.jpg",
"dob": "1994-05-10T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "This seemed to quiver all over their heads. She felt very curious thing, and longed to change the subject. 'Go on with the lobsters and the party went back for a few yards off. The Cat seemed to be.",
"address": "943 Hane Villages\nPowlowskitown, MN 58810",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-06-07T21:40:11.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
"reviewable": {
"id": 9,
"name": "Greyson Yundt",
"first_name": "Greyson",
"last_name": "Yundt",
"email": "vhodkiewicz@hotmail.com",
"phone": "+18016853259",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2016-09-22T00:00:00.000000Z",
"gender": null,
"description": "Alice! It was all.",
"bio": "And oh, my poor little juror (it was Bill, I fancy--Who's to go after that into a chrysalis--you will some day, you know--and then after that savage Queen: so she sat down again very sadly and.",
"address": "4707 Franecki Mountains Apt. 727\nBoganstad, MT 33904",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-10-17T16:30:36.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 12,
"star": 3,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 6,
"account": {
"id": null,
"name": " ",
"first_name": "",
"last_name": "",
"email": null,
"phone": null,
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6SiiivkjzwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD//2Q==",
"dob": null,
"gender": null,
"description": null,
"bio": null,
"address": null,
"type": {
"value": null,
"label": ""
},
"credits": 0,
"is_public_profile": null,
"hide_cv": null,
"available_for_hiring": null,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": null,
"updated_at": null
},
"reviewable": {
"id": 6,
"name": "Alberta Hansen",
"first_name": "Alberta",
"last_name": "Hansen",
"email": "christian.weissnat@harris.net",
"phone": "+18325770454",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/2.jpg",
"dob": "2013-12-16T00:00:00.000000Z",
"gender": null,
"description": "I mean what I eat\".",
"bio": "Alice to herself, 'if one only knew the name of nearly everything there. 'That's the first sentence in her life, and had to be treated with respect. 'Cheshire Puss,' she began, rather timidly, as.",
"address": "236 Pfannerstill Junctions\nKshlerinchester, PA 08842",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-09-02T17:32:50.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 13,
"star": 4,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 3,
"account": {
"id": 6,
"name": "Alberta Hansen",
"first_name": "Alberta",
"last_name": "Hansen",
"email": "christian.weissnat@harris.net",
"phone": "+18325770454",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/2.jpg",
"dob": "2013-12-16T00:00:00.000000Z",
"gender": null,
"description": "I mean what I eat\".",
"bio": "Alice to herself, 'if one only knew the name of nearly everything there. 'That's the first sentence in her life, and had to be treated with respect. 'Cheshire Puss,' she began, rather timidly, as.",
"address": "236 Pfannerstill Junctions\nKshlerinchester, PA 08842",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-09-02T17:32:50.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 3,
"name": "Sarah Harding",
"first_name": "Sarah",
"last_name": "Harding",
"email": "sarah_harding@botble.com",
"phone": "+13396142088",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Anooorwz5oKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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nnhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAE9ndy2N5DdQHEkTBlr2TStTg1fT47u3PysPmXujdwa8UrU0PXbrQrvzYTvibiSInhh/Q+9dFCt7N2ex1YXEeylZ7M9korN0jXbHWod9rKPMAy0TcOv4f1rSr0001dHtRkpK6Oe1LwZpOou0oja2lbktCcAn3HSsST4bjP7vVMD0aD/AOyrvKKzlQpy1aMZYalJ3cTh4PhxCrAz6k7r6RxBT+ZJrqNL0Sw0eIpZwhWb70jcs31NaFFOFKENYocKFOm7xQUUVgeIfFNrosTRIVmvSPliB+77t6fTrVSkoq7NJzjBc0mZHxA1ZY7WLS42zJIRJLjso6D8Tz+Fee1NdXU17dSXNw5eWQ7mY96hryqtT2kuY8GvVdWbkFFFFZGQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAOjkkhkWSJ2R1OQynBH4102n+O9UtAEuAl2g/v8ADfmP6g1y9FXGcofCy4VJwd4ux6TbfELTZABcW1xC3sAw/PIP6VfXxtoLDm8ZfYwv/QV5PRW6xdRHSsdVXY9XfxtoKji7d/ZYm/qKoXPxD0+MEW1rcTN/tYQfnyf0rzeih4uoweOqvayOl1Lxvqt+pjhZbSI9ovvH/gX+GK5sksxJJJPJJ70lFYSnKTvJnNOpKbvJ3CiiioICiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1970-01-09T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "I must be a book of rules for shutting people up like a snout than a pig, and she felt that there was a good opportunity for croqueting one of them even when they passed too close, and waving their.",
"address": "634 Brooke Plains Suite 076\nWest Curtis, MI 92699-4247",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-10-19T23:55:55.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 14,
"star": 1,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 3,
"account": {
"id": 10,
"name": "Emilie Denesik",
"first_name": "Emilie",
"last_name": "Denesik",
"email": "wallace.schuster@crooks.com",
"phone": "+16784544405",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/5.jpg",
"dob": "2009-12-20T00:00:00.000000Z",
"gender": null,
"description": "Hatter: 'it's very.",
"bio": "Duchess, as she remembered trying to make personal remarks,' Alice said nothing: she had peeped into the garden door. Poor Alice! It was so small as this before, never! And I declare it's too bad.",
"address": "633 Hudson Passage Apt. 765\nBlandaville, IA 77467-4968",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-09-06T16:11:49.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"reviewable": {
"id": 3,
"name": "Sarah Harding",
"first_name": "Sarah",
"last_name": "Harding",
"email": "sarah_harding@botble.com",
"phone": "+13396142088",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Anooorwz5oKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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nnhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAE9ndy2N5DdQHEkTBlr2TStTg1fT47u3PysPmXujdwa8UrU0PXbrQrvzYTvibiSInhh/Q+9dFCt7N2ex1YXEeylZ7M9korN0jXbHWod9rKPMAy0TcOv4f1rSr0001dHtRkpK6Oe1LwZpOou0oja2lbktCcAn3HSsST4bjP7vVMD0aD/AOyrvKKzlQpy1aMZYalJ3cTh4PhxCrAz6k7r6RxBT+ZJrqNL0Sw0eIpZwhWb70jcs31NaFFOFKENYocKFOm7xQUUVgeIfFNrosTRIVmvSPliB+77t6fTrVSkoq7NJzjBc0mZHxA1ZY7WLS42zJIRJLjso6D8Tz+Fee1NdXU17dSXNw5eWQ7mY96hryqtT2kuY8GvVdWbkFFFFZGQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAOjkkhkWSJ2R1OQynBH4102n+O9UtAEuAl2g/v8ADfmP6g1y9FXGcofCy4VJwd4ux6TbfELTZABcW1xC3sAw/PIP6VfXxtoLDm8ZfYwv/QV5PRW6xdRHSsdVXY9XfxtoKji7d/ZYm/qKoXPxD0+MEW1rcTN/tYQfnyf0rzeih4uoweOqvayOl1Lxvqt+pjhZbSI9ovvH/gX+GK5sksxJJJPJJ70lFYSnKTvJnNOpKbvJ3CiiioICiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1970-01-09T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "I must be a book of rules for shutting people up like a snout than a pig, and she felt that there was a good opportunity for croqueting one of them even when they passed too close, and waving their.",
"address": "634 Brooke Plains Suite 076\nWest Curtis, MI 92699-4247",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-10-19T23:55:55.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 15,
"star": 4,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Account",
"reviewable_id": 7,
"account": {
"id": 2,
"name": "Alyson Labadie",
"first_name": "Alyson",
"last_name": "Labadie",
"email": "job_seeker@botble.com",
"phone": "+19725467429",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/3.jpg",
"dob": "1994-05-10T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "This seemed to quiver all over their heads. She felt very curious thing, and longed to change the subject. 'Go on with the lobsters and the party went back for a few yards off. The Cat seemed to be.",
"address": "943 Hane Villages\nPowlowskitown, MN 58810",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-06-07T21:40:11.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
"reviewable": {
"id": 7,
"name": "Pierce Goodwin",
"first_name": "Pierce",
"last_name": "Goodwin",
"email": "adell03@kreiger.info",
"phone": "+15054365163",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/3.jpg",
"dob": "2022-01-27T00:00:00.000000Z",
"gender": null,
"description": "Five! Always lay.",
"bio": "However, this bottle was a table, with a table in the sea, 'and in that poky little house, and the other side of the trial.' 'Stupid things!' Alice began in a very curious to see the Queen. 'I.",
"address": "35942 Danyka Cove\nNew Tayatown, NY 85780-3612",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-08-26T04:45:32.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 16,
"star": 1,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 1,
"account": {
"id": 5,
"name": "William Kennedy",
"first_name": "William",
"last_name": "Kennedy",
"email": "wiliam_kend@botble.com",
"phone": "+13144612263",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax6KKK9A/PQooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK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sQ+n3j+i4/GlFXaReIqeypSn2R4uzM7lmJLMcknuaSiiu8+DCvV/hVfebpF7Yk8wTCQfRh/ip/OvKK7P4Z332bxT9nJ+W6hZMf7Q+YfoD+dZ1VeLO/LKvs8VHz0+89kooorjPswrwXxle/b/ABdqMoOVWXyl+iDb/Svc725Wysbi6f7sMbSH6AZ/pXzjJI0sryOcu5LMfUmt6C1bPBz2paEKffUbRRRXSfNhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHQ+E/FL+F7q4lFr9pSdApTzNmCDwc4Pqfzrq/+Ft/9QT/AMm//sK8zoqHTi3do7KOPxFGHJTlZei/yPTP+Ft/9QT/AMm//sK5rxb4wfxQtqn2P7KkBY7fN37icc9B0x+tcxRQqcU7pDq5hiasHCcrp+S/yCiiirOIKt6Vfvpeq2t/Gu5oJFfbnG4A8jPuOKqUUDjJxaa3R6Z/wtv/AKgn/k3/APYUf8Lb/wCoJ/5N/wD2FeZ0Vn7KHY9D+1cX/P8Agv8AI73WviW+raPdWCaX5BnTZ5n2jdgZ542jtkde9cFRRVRio7HLXxNWvJSqu7CiiiqMAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1992-05-16T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Father William replied to his son, 'I feared it might appear to others that what you mean,' the March Hare had just begun to think to herself, 'Which way? Which way?', holding her hand on the.",
"address": "2027 Darrell Trafficway\nSouth Kristofferfurt, KS 86428",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-07-17T00:00:15.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 1,
"name": "Pinterest",
"description": "Aut a amet aut. Voluptatem aut velit voluptas unde veritatis et. Reprehenderit iure dolor et qui non quisquam ullam saepe.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "123 Ortiz Street\nJustusmouth, OH 66974-6163",
"email": null,
"phone": "+15674985025",
"website": "https://www.pinterest.com",
"year_founded": 2013,
"number_of_offices": 10,
"number_of_employees": 7,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/1.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/pinterest",
"latitude": "42.518176",
"longitude": "-74.943124",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-27T09:02:27.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 17,
"star": 3,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 15,
"account": {
"id": 3,
"name": "Sarah Harding",
"first_name": "Sarah",
"last_name": "Harding",
"email": "sarah_harding@botble.com",
"phone": "+13396142088",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Anooorwz5oKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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nnhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAE9ndy2N5DdQHEkTBlr2TStTg1fT47u3PysPmXujdwa8UrU0PXbrQrvzYTvibiSInhh/Q+9dFCt7N2ex1YXEeylZ7M9korN0jXbHWod9rKPMAy0TcOv4f1rSr0001dHtRkpK6Oe1LwZpOou0oja2lbktCcAn3HSsST4bjP7vVMD0aD/AOyrvKKzlQpy1aMZYalJ3cTh4PhxCrAz6k7r6RxBT+ZJrqNL0Sw0eIpZwhWb70jcs31NaFFOFKENYocKFOm7xQUUVgeIfFNrosTRIVmvSPliB+77t6fTrVSkoq7NJzjBc0mZHxA1ZY7WLS42zJIRJLjso6D8Tz+Fee1NdXU17dSXNw5eWQ7mY96hryqtT2kuY8GvVdWbkFFFFZGQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAOjkkhkWSJ2R1OQynBH4102n+O9UtAEuAl2g/v8ADfmP6g1y9FXGcofCy4VJwd4ux6TbfELTZABcW1xC3sAw/PIP6VfXxtoLDm8ZfYwv/QV5PRW6xdRHSsdVXY9XfxtoKji7d/ZYm/qKoXPxD0+MEW1rcTN/tYQfnyf0rzeih4uoweOqvayOl1Lxvqt+pjhZbSI9ovvH/gX+GK5sksxJJJPJJ70lFYSnKTvJnNOpKbvJ3CiiioICiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1970-01-09T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "I must be a book of rules for shutting people up like a snout than a pig, and she felt that there was a good opportunity for croqueting one of them even when they passed too close, and waving their.",
"address": "634 Brooke Plains Suite 076\nWest Curtis, MI 92699-4247",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-10-19T23:55:55.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 18,
"star": 2,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 4,
"account": {
"id": 3,
"name": "Sarah Harding",
"first_name": "Sarah",
"last_name": "Harding",
"email": "sarah_harding@botble.com",
"phone": "+13396142088",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Anooorwz5oKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoopVVnYKoJYnAAHJNACVJDBLcSCOCJ5XPRUUsT+ArttC8B+Yi3GrllB5Fupwf+BHt9BXb2lla2MXlWtvHCnoi4z9fWuqnhZS1lodtLAzmry0PK7fwfrlyAwsjGp7yuF/TOavL8PtYbrLaL9ZG/otem0V0LCUzrWApLe55hJ4A1lBlWtZPZZD/UCsu78NaxYgtNYS7R1ZBvH/AI7mvY6KHhIPYUsBTezaPB6K9i1Xw5purqxngCzHpNH8rf8A1/xrzfXvDd3oUuX/AHtsxwkyjj6EdjXLVw8qeu6OGthZ0td0YtFFFc5zBRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAV6D4G8PIkK6tdJmR/9QpH3R/e+p7f/AF64Wztzd3sFsvBlkVB+JxXt0USQQpDGoVEUKoHYDgV14SmpS5n0O7A0lKTm+g+iiquo38OmafNeTn93EucDqT2A+pr0G7K7PWbSV2WiQBknAqnJq+mxMVk1C0Qjs0yj+teUav4h1DWZmM8zLDn5YUOFA/qfc1lVxyxmvuo86eYa+6j3GC9tLr/j3uoZv+ucgb+VT14QrMjBlYqw5BBwRXceEvF07XUenajIZFkO2KZj8wbsCe+fWqp4pSdpKxdHHRnLlkrHf1Fc20N5bSW9xGJIpBhlPepaK6zvaueN+INGk0TVHtiS0R+aJz/Ev+I6Vl16f4809brQvtQX95asGz/sngj+R/CvMK8mvT5J2R4OJpeyqNLYKKKKxMAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigDU8OY/4SPT89PPX+deyV4Zazta3cNwn3opFcfUHNe3288dzbxzxNujkUOp9QRmu/BvRo9TL5LllEkrmPHqyHw3lM7RMhf6c/1xXT1DdW0N7ayW06B4pF2sp9K6px5ouJ21Yc8HHueG0V0eueD77SneWBGubTqHQZZR/tD+vT6VzleRKEou0jwJ05QdpIKVWKMGUkMDkEdjSUUiT2WDX9Lkt4nfUrNXZAWUzqCDjp1qT+3NI/6Cll/4EL/jXi1Fdf1yXY9D+0Jdj1vWdV0q50S+hXUrN2eBwqidSScHGOfWvJKKKxq1XUd2jmr13WabVgooorEwCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACu78D+IkRRpF2+Of9Hcn1/h/w/8A1VwlAODkda0p1HTlzI0o1XSlzI94orz7w945aBUtdWLOg4W4Ayw/3h3+vX613lvcwXcKzW8qSxt0ZDkV6lOrGoro9ylWhVV4slrI1HwzpOqEtPaqsp/5aRfK36dfxrXoq3FSVmXKMZK0lc8/v/h3KuW0+8Vx2SYYP5j/AAFctqGjajpbYvLWSNc4D4yp/EcV7TSMqupV1DKRggjINc08LB/DoclTA05fDoeEUV6drPgaxvg0tji0n64A/dt+Hb8PyrzzUdMu9Kujb3kJjfsezD1B71x1KMqe551bDzpfFsVKKKKxMAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACrVjqV7psvm2dzJC3faeD9R0NVaKabWqBNp3R3OnfEORcJqNqHHeSHg/98nj9RXVWHiPSdSwLe8jEh/5ZyfI35Hr+FeOUV0QxU476nZTx1SO+p7xRXj+meJ9V0oqIbkyRD/llL8y/wCI/CvQfD/iu01z9yV8i7AyYichvdT3+ldlPEQnpszvo4uFR22Zv1R1XSrXWLJra6TIPKuPvIfUVeorZpNWZ0tKSszxTVdMn0jUJLO4HzIcqw6MvYiqVelePtNW40lL9V/eWzAMfVCcfzx+tea15Nan7OdjwcRS9lUcegUUUVkYhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHa+CtE0zVrC5e9thLLHLgHewwCPY/Wun/wCEO0D/AKB4/wC/r/41yvw9vhDqdzZsceegZfdl7fkT+VejV6WHjCVNNo9jCwpzpJtK5h/8IdoH/QPH/f1/8a878T2EOm+ILm2t4/LgG0ouSeCo9ffNewVxfjvQ5LqOPU7ZC7xLtmUDnb1B/Dn/ACKMRSXJeKFi6EXTvBao87ooorzTyAqW2uJLS6iuIW2yRsGU+4qKrWnWE2p38VpApLyNjP8AdHcn2FNXvoON29Nz2uGQTQRyjo6hh+Ip9NjjWKJI1+6qhR9BTq9s+kRna9EJvD+oIf8An3cj6gEj+VeMV7N4hmEHh3UHY4/cMo+pGB+prxmvPxnxI8rMPjQUUUVxnnhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAE9ndy2N5DdQHEkTBlr2TStTg1fT47u3PysPmXujdwa8UrU0PXbrQrvzYTvibiSInhh/Q+9dFCt7N2ex1YXEeylZ7M9korN0jXbHWod9rKPMAy0TcOv4f1rSr0001dHtRkpK6Oe1LwZpOou0oja2lbktCcAn3HSsST4bjP7vVMD0aD/AOyrvKKzlQpy1aMZYalJ3cTh4PhxCrAz6k7r6RxBT+ZJrqNL0Sw0eIpZwhWb70jcs31NaFFOFKENYocKFOm7xQUUVgeIfFNrosTRIVmvSPliB+77t6fTrVSkoq7NJzjBc0mZHxA1ZY7WLS42zJIRJLjso6D8Tz+Fee1NdXU17dSXNw5eWQ7mY96hryqtT2kuY8GvVdWbkFFFFZGQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAOjkkhkWSJ2R1OQynBH4102n+O9UtAEuAl2g/v8ADfmP6g1y9FXGcofCy4VJwd4ux6TbfELTZABcW1xC3sAw/PIP6VfXxtoLDm8ZfYwv/QV5PRW6xdRHSsdVXY9XfxtoKji7d/ZYm/qKoXPxD0+MEW1rcTN/tYQfnyf0rzeih4uoweOqvayOl1Lxvqt+pjhZbSI9ovvH/gX+GK5sksxJJJPJJ70lFYSnKTvJnNOpKbvJ3CiiioICiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/9k=",
"dob": "1970-01-09T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "I must be a book of rules for shutting people up like a snout than a pig, and she felt that there was a good opportunity for croqueting one of them even when they passed too close, and waving their.",
"address": "634 Brooke Plains Suite 076\nWest Curtis, MI 92699-4247",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-10-19T23:55:55.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 4,
"name": "Uber",
"description": "Placeat eaque in error blanditiis eos veniam. Est rerum aut eius et illo dolore. Nostrum error ducimus qui velit. Aut fugit harum repellendus sit vel accusantium sunt.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "82419 Cruz Forge Apt. 752\nEast Rosendostad, LA 45373",
"email": null,
"phone": "+17549839043",
"website": "https://www.uber.com",
"year_founded": 1997,
"number_of_offices": 3,
"number_of_employees": 4,
"annual_revenue": "10M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/4.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/uber",
"latitude": "43.904399",
"longitude": "-75.12099",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-01-23T19:17:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 19,
"star": 1,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 3,
"account": {
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
},
"reviewable": {
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 20,
"star": 3,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 9,
"account": {
"id": 2,
"name": "Alyson Labadie",
"first_name": "Alyson",
"last_name": "Labadie",
"email": "job_seeker@botble.com",
"phone": "+19725467429",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/3.jpg",
"dob": "1994-05-10T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "This seemed to quiver all over their heads. She felt very curious thing, and longed to change the subject. 'Go on with the lobsters and the party went back for a few yards off. The Cat seemed to be.",
"address": "943 Hane Villages\nPowlowskitown, MN 58810",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-06-07T21:40:11.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
"reviewable": {
"id": 9,
"name": "Vibe",
"description": "Et excepturi iure sed rem doloremque dicta et ipsam. Placeat laboriosam sint nisi molestiae. Facilis voluptates non et et inventore dolore voluptas quia.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "340 Hegmann Greens Suite 288\nNorth Brendenbury, MN 40571-4172",
"email": null,
"phone": "+12408300228",
"website": "https://www.vibe.com",
"year_founded": 2013,
"number_of_offices": 1,
"number_of_employees": 7,
"annual_revenue": "4M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/vibe",
"latitude": "43.477698",
"longitude": "-75.524817",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-05T19:42:42.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
{
"id": 21,
"star": 5,
"comment": null,
"status": {
"value": "published",
"label": "Published"
},
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_id": 13,
"account": {
"id": 10,
"name": "Emilie Denesik",
"first_name": "Emilie",
"last_name": "Denesik",
"email": "wallace.schuster@crooks.com",
"phone": "+16784544405",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/5.jpg",
"dob": "2009-12-20T00:00:00.000000Z",
"gender": null,
"description": "Hatter: 'it's very.",
"bio": "Duchess, as she remembered trying to make personal remarks,' Alice said nothing: she had peeped into the garden door. Poor Alice! It was so small as this before, never! And I declare it's too bad.",
"address": "633 Hudson Passage Apt. 765\nBlandaville, IA 77467-4968",
"type": {
"value": "job-seeker",
"label": "Job seeker"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 0,
"resume_url": "http://jobcy.test/storage/themes/jobcy/resume/01.pdf",
"resume_name": "01.pdf",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-09-06T16:11:49.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"reviewable": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/reviews?page=1",
"last": "http://jobcy.test/api/v1/reviews?page=4",
"prev": null,
"next": "http://jobcy.test/api/v1/reviews?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 4,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/reviews?page=1",
"label": "1",
"active": true
},
{
"url": "http://jobcy.test/api/v1/reviews?page=2",
"label": "2",
"active": false
},
{
"url": "http://jobcy.test/api/v1/reviews?page=3",
"label": "3",
"active": false
},
{
"url": "http://jobcy.test/api/v1/reviews?page=4",
"label": "4",
"active": false
},
{
"url": "http://jobcy.test/api/v1/reviews?page=2",
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/reviews",
"per_page": 20,
"to": 20,
"total": 79
},
"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 api/v1/reviews/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/reviews/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/reviews/1562"
);
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": "Review 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.
GET api/v1/analytics/jobs/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/analytics/jobs/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/analytics/jobs/1562"
);
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 api/v1/analytics/companies/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/analytics/companies/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/analytics/companies/1562"
);
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 api/v1/job-applications
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-applications" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-applications"
);
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 api/v1/job-applications/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-applications/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-applications/1562"
);
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.
PUT api/v1/job-applications/{id}
Example request:
curl --request PUT \
"http://jobcy.test/api/v1/job-applications/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"approved\"
}"
const url = new URL(
"http://jobcy.test/api/v1/job-applications/1562"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "approved"
};
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 api/v1/job-applications/{id}
Example request:
curl --request DELETE \
"http://jobcy.test/api/v1/job-applications/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-applications/1562"
);
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.
GET api/v1/job-applications/{id}/download-cv
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/job-applications/1562/download-cv" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/job-applications/1562/download-cv"
);
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 api/v1/locations/countries
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/locations/countries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/locations/countries"
);
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": 5,
"name": "Denmark",
"code": "DN"
},
{
"id": 2,
"name": "England",
"code": "UK"
},
{
"id": 1,
"name": "France",
"code": "FRA"
},
{
"id": 6,
"name": "Germany",
"code": "DN"
},
{
"id": 4,
"name": "Holland",
"code": "HL"
},
{
"id": 3,
"name": "USA",
"code": "US"
}
],
"links": {
"first": "http://jobcy.test/api/v1/locations/countries?page=1",
"last": "http://jobcy.test/api/v1/locations/countries?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/locations/countries?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/locations/countries",
"per_page": 50,
"to": 6,
"total": 6
},
"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 api/v1/locations/states/{countryId}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/locations/states/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/locations/states/1562"
);
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": "Country 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.
GET api/v1/locations/cities/{stateId}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/locations/cities/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/locations/cities/1562"
);
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": "State 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.
POST api/v1/auth/apple
Example request:
curl --request POST \
"http://jobcy.test/api/v1/auth/apple" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/auth/apple"
);
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.
POST api/v1/auth/google
Example request:
curl --request POST \
"http://jobcy.test/api/v1/auth/google" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/auth/google"
);
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.
POST api/v1/auth/facebook
Example request:
curl --request POST \
"http://jobcy.test/api/v1/auth/facebook" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/auth/facebook"
);
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.
POST api/v1/auth/x
Example request:
curl --request POST \
"http://jobcy.test/api/v1/auth/x" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/auth/x"
);
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.
Jobs
List jobs
Get a paginated list of jobs with filtering options.
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/jobs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/jobs"
);
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": 14,
"name": "Software Engineer Actions Platform",
"url": "http://jobcy.test/jobs/software-engineer-actions-platform",
"description": "Iure nisi perspiciatis eum quasi. Et recusandae aut dolorem corporis illo quo pariatur recusandae. Incidunt iure laborum perspiciatis molestiae sunt praesentium quia aliquam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1200.00",
"salary_to": "2500.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $2,500.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-07T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 2,
"name": "Adobe XD",
"description": "",
"url": "http://jobcy.test/job-tags/adobe-xd",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 6,
"name": "PHP",
"description": "",
"url": "http://jobcy.test/job-tags/php",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 2,
"name": "PHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 03, 2025",
"created_at": "2025-07-03T08:39:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
},
{
"id": 17,
"name": "Staff Engineering Manager, Packages",
"url": "http://jobcy.test/jobs/staff-engineering-manager-packages",
"description": "Autem adipisci saepe aut enim delectus. Beatae nesciunt qui ad qui aliquid illo. Commodi aperiam voluptatem nobis qui. Est est neque et.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "1900.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $1,900.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-10T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/2-500x300.png",
"company": {
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 2,
"name": "Adobe XD",
"description": "",
"url": "http://jobcy.test/job-tags/adobe-xd",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 8,
"name": "JavaScript",
"description": "",
"url": "http://jobcy.test/job-tags/javascript",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 1,
"name": "Javascript",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 03, 2025",
"created_at": "2025-07-03T00:44:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.001292",
"longitude": "-75.000273"
},
{
"id": 23,
"name": "Senior Enterprise Advocate, EMEA",
"url": "http://jobcy.test/jobs/senior-enterprise-advocate-emea",
"description": "Iste nesciunt vel et a nesciunt qui. Aut ut autem dolorum provident. Placeat ut illum accusamus vitae mollitia amet. Earum id ut nihil maiores.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1500.00",
"salary_to": "2700.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,500.00 - $2,700.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/15-500x300.png",
"company": {
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoopVVnYKoLMTgADJJoASpIYJrmQRwRPLIeiopYn8BXc6B4A8xEudYLKDyLZDg/8AAj2+g/Ou6tLG1sIhFaW8cKeiLjP19a8nEZtTpvlprmf4Hu4TIq1ZKVV8q/H/AIB5PbeDNeuVDCxManvK4X9M5/Sry/DvWWHMtmv1kb+i16lRXnyzfEPZJHrQyDCpatv5/wDAPK5Ph7rSDKtayeyyH+oFZV54Y1qxBafT5to6tGA4/wDHc17TRThnFdP3kmKpw/hpL3W0eAUV7Rq3hrTNZVjcW4WY9Jo/lcfj3/GvMvEHhi80GXL/AL21Y4SZRx9COxr1cLmFLEPl2l2PBxuU1sKub4o91+qMSiiivQPLCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAr0XwH4dSOBdYukzI//AB7qR90f3vqe3t9a4GytjeX1varwZpFjB+pxXusMSQQxwxqFjjUKoHYDgV5GbYh04KnHr+R7+Q4SNWq609o7ev8AwB9FFVdS1CHS9OmvZyfLiXOB1J7AfU8V85GLk0lufXSkoxcpbItEgDJOAKpSaxpkLFZNRtEYdmnUH+deR6z4j1DWpmM8zLDn5YEOEA/qfc1k17dLJm1epLXyPm63ESUrUoXXd/5Hu9vfWl3/AMe11BN/1zkDfyqxXgKsyMGVirDkEHBFd34Q8YXDXUem6nKZVkO2KZj8wbsCe+fX/IyxOUypxc6bvY3weewrTVOrHlb69D0Oorq2hvLaS3uIxJFINrKe4qWivJTad0e80mrM8V8Q6LJoWqvasS0R+eJz/Ev+I6VlV6p4/wBOW70D7UF/e2rhs99p4I/kfwryuvrcBiHXoqT3WjPgc0wiwuIcI7PVBRRRXaeeFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAavhrH/CTadu6eev869qrwa0uGtLyC5T70UiyD6g5r3W3njuraK4ibdHKgdT6gjNfP51B88ZdD6vhyouScOt7klcr8QVkPhnKZ2idC/05/riuqqG7tYb20ltrhA8UqlWU+leTQqKlVjN9Ge7iqLrUZU090eDUV0uveDL/AEl3lgRrq06h0GWUf7Q/r0+lc1X2NKtCrHmg7o/Pa9CpQnyVFZhSqzI4ZSQynII7GkorUxPa7fxDpUltE8mp2SuyAspnUEHHTrUn9vaP/wBBWx/8CE/xrxCivGeTU/5mfRLiKql8CPYNb1fSbnQr+FdTsnd7dwqidSSdpxgZ9a8fooruwmEWGi4p3ueZj8fLGSUpRtYKKKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACu/wDAniREVdHvH28/6O7H1/g/w/L0rgKAcHI61z4nDxxFNwkdWDxc8LVVSH/Do9/orzrw748aBUtNXLOg4W4Ayw/3h3+vX616Bb3MF3As1vMksTdGRsivlcRhamHlaa+fQ+5wmOo4qN6b17dUS1j6l4X0jVSWntFWU/8ALWL5G/Tr+Oa2KKxhUnB3g7M6KlKFWPLUSa8zzzUPhvKuW0+9Vx2jnGD/AN9D/AVyWo6JqWlNi9tJI1zgPjKn8RxXuFIyq6lXUMpGCCMg16VHNq0NJ+8vxPHxGQ4eprT91/ev6+Z4DRXqWteA7C/DS2GLO464A/dt+Hb8PyrznUtLvNJujb3kJjfseoYeoPcV7eGxtLEL3Xr2Pm8Zl1fCP31dd1sU6KKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKt2Gp3umTebZXMkLd9p4P1HQ/jVSiplFSVmroqMpQfNF2Z3mm/EeRdqanaBx3lg4P/AHyeP1Fdbp/iXSNTwtvexiQ/8s5Pkb8j1/CvFqK86tlVCprH3Wexh89xNLSfvLz3+89/orxnS/FOraSVWG5aSEf8spfmX8O4/CvRfD3i20139yV8i8AyYmOQ3up7/SvHxOXVaC5t0fQYPN6GJah8Muz/AEZ0NUdW0i11mxa1ukyDyjj7yH1FXqK4YycWpRdmj05wjOLjJXTPDdW0ufR9Rls7gfMhyrDo69iKpV6d8QtMW40hNQVf3tswDH1Rjj+eP1rzGvrsFiPrFFTe/U+AzHCfVcQ6a23XoFFFFdZwhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHceB9D0rV9PuXvrUTSxy4B3sMAgehHvXU/8ACF+Hv+gcP+/r/wDxVcl8Ob4Q6pc2THH2iMMvuy9vyJ/KvS6+YzCrWp4iSUml6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 3,
"name": "Figma",
"description": "",
"url": "http://jobcy.test/job-tags/figma",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 5,
"name": "Lunacy",
"description": "",
"url": "http://jobcy.test/job-tags/lunacy",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 2,
"name": "PHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 02, 2025",
"created_at": "2025-07-02T17:14:54.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.211576",
"longitude": "-75.471627"
},
{
"id": 37,
"name": "Support Engineer (Enterprise Support Japanese)",
"url": "http://jobcy.test/jobs/support-engineer-enterprise-support-japanese",
"description": "Neque magni reiciendis nostrum eius. Explicabo quis aut consequatur ea omnis. Quia vitae quaerat commodi dicta distinctio hic qui. Sunt voluptatem officiis libero ducimus.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "800.00",
"salary_to": "2200.00",
"salary_range": {
"value": "hourly",
"label": "Hourly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$800.00 - $2,200.00 /hourly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-07-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-24T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 2,
"name": "England",
"code": "UK"
},
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
}
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 3,
"name": "Figma",
"description": "",
"url": "http://jobcy.test/job-tags/figma",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 7,
"name": "Python",
"description": "",
"url": "http://jobcy.test/job-tags/python",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 1,
"name": "Javascript",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T23:42:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 7,
"name": "Senior System Engineer",
"url": "http://jobcy.test/jobs/senior-system-engineer",
"description": "Ut similique in itaque ipsum. Atque distinctio iusto aut harum eius. Ipsum sed possimus eum rerum ipsum ut. Enim nisi ut laborum dicta velit.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1200.00",
"salary_to": "1900.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $1,900.00 /daily",
"hide_salary": 0,
"number_of_positions": 3,
"expire_date": "2025-08-27T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 2,
"name": "England",
"code": "UK"
},
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 1,
"name": "Illustrator",
"description": "",
"url": "http://jobcy.test/job-tags/illustrator",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 5,
"name": "Lunacy",
"description": "",
"url": "http://jobcy.test/job-tags/lunacy",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 2,
"name": "PHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T22:08:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 34,
"name": "Enterprise Account Executive",
"url": "http://jobcy.test/jobs/enterprise-account-executive",
"description": "Ea non aut tempore molestiae. Rerum sit consequuntur qui nemo placeat repellat eos excepturi. Tempora error animi dolor eaque. Sint unde vitae veniam sapiente illo libero vel.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1400.00",
"salary_to": "2800.00",
"salary_range": {
"value": "monthly",
"label": "Monthly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,400.00 - $2,800.00 /monthly",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-08-15T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-19T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/9-500x300.png",
"company": {
"id": 9,
"name": "Vibe",
"description": "Et excepturi iure sed rem doloremque dicta et ipsam. Placeat laboriosam sint nisi molestiae. Facilis voluptates non et et inventore dolore voluptas quia.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "340 Hegmann Greens Suite 288\nNorth Brendenbury, MN 40571-4172",
"email": null,
"phone": "+12408300228",
"website": "https://www.vibe.com",
"year_founded": 2013,
"number_of_offices": 1,
"number_of_employees": 7,
"annual_revenue": "4M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/vibe",
"latitude": "43.477698",
"longitude": "-75.524817",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-05T19:42:42.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 6,
"name": "Germany",
"code": "DN"
},
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Technology",
"description": null,
"url": "http://jobcy.test/job-categories/technology",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 1,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 2,
"name": "Adobe XD",
"description": "",
"url": "http://jobcy.test/job-tags/adobe-xd",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 5,
"name": "Lunacy",
"description": "",
"url": "http://jobcy.test/job-tags/lunacy",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 3,
"name": "Python",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 28, 2025",
"created_at": "2025-06-28T23:05:09.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
},
"latitude": "43.477698",
"longitude": "-75.524817"
},
{
"id": 9,
"name": "Lead Quality Control QA",
"url": "http://jobcy.test/jobs/lead-quality-control-qa",
"description": "Id voluptates commodi aut mollitia earum ut. Et et eaque quo et est. Sit quae fugit accusantium ab et soluta ea sed.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "800.00",
"salary_to": "1800.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$800.00 - $1,800.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-07-14T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-25T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/2-500x300.png",
"company": {
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 2,
"name": "Freelance",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 2,
"name": "Adobe XD",
"description": "",
"url": "http://jobcy.test/job-tags/adobe-xd",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 8,
"name": "JavaScript",
"description": "",
"url": "http://jobcy.test/job-tags/javascript",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 6,
"name": "Wordpress",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T07:12:14.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.001292",
"longitude": "-75.000273"
},
{
"id": 16,
"name": "Staff Engineering Manager: Actions Runtime",
"url": "http://jobcy.test/jobs/staff-engineering-manager-actions-runtime",
"description": "Repellat ullam quia nesciunt culpa. Ut hic corporis illo accusantium quis enim. Distinctio deleniti et enim sunt sed quaerat esse.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "2400.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,400.00 /daily",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-07-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/3-500x300.png",
"company": {
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoopVVnYKoLMTgADJJoASpIYJrmQRwRPLIeiopYn8BXc6B4A8xEudYLKDyLZDg/8AAj2+g/Ou6tLG1sIhFaW8cKeiLjP19a8nEZtTpvlprmf4Hu4TIq1ZKVV8q/H/AIB5PbeDNeuVDCxManvK4X9M5/Sry/DvWWHMtmv1kb+i16lRXnyzfEPZJHrQyDCpatv5/wDAPK5Ph7rSDKtayeyyH+oFZV54Y1qxBafT5to6tGA4/wDHc17TRThnFdP3kmKpw/hpL3W0eAUV7Rq3hrTNZVjcW4WY9Jo/lcfj3/GvMvEHhi80GXL/AL21Y4SZRx9COxr1cLmFLEPl2l2PBxuU1sKub4o91+qMSiiivQPLCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAr0XwH4dSOBdYukzI//AB7qR90f3vqe3t9a4GytjeX1varwZpFjB+pxXusMSQQxwxqFjjUKoHYDgV5GbYh04KnHr+R7+Q4SNWq609o7ev8AwB9FFVdS1CHS9OmvZyfLiXOB1J7AfU8V85GLk0lufXSkoxcpbItEgDJOAKpSaxpkLFZNRtEYdmnUH+deR6z4j1DWpmM8zLDn5YEOEA/qfc1k17dLJm1epLXyPm63ESUrUoXXd/5Hu9vfWl3/AMe11BN/1zkDfyqxXgKsyMGVirDkEHBFd34Q8YXDXUem6nKZVkO2KZj8wbsCe+fX/IyxOUypxc6bvY3weewrTVOrHlb69D0Oorq2hvLaS3uIxJFINrKe4qWivJTad0e80mrM8V8Q6LJoWqvasS0R+eJz/Ev+I6VlV6p4/wBOW70D7UF/e2rhs99p4I/kfwryuvrcBiHXoqT3WjPgc0wiwuIcI7PVBRRRXaeeFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAavhrH/CTadu6eev869qrwa0uGtLyC5T70UiyD6g5r3W3njuraK4ibdHKgdT6gjNfP51B88ZdD6vhyouScOt7klcr8QVkPhnKZ2idC/05/riuqqG7tYb20ltrhA8UqlWU+leTQqKlVjN9Ge7iqLrUZU090eDUV0uveDL/AEl3lgRrq06h0GWUf7Q/r0+lc1X2NKtCrHmg7o/Pa9CpQnyVFZhSqzI4ZSQynII7GkorUxPa7fxDpUltE8mp2SuyAspnUEHHTrUn9vaP/wBBWx/8CE/xrxCivGeTU/5mfRLiKql8CPYNb1fSbnQr+FdTsnd7dwqidSSdpxgZ9a8fooruwmEWGi4p3ueZj8fLGSUpRtYKKKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACu/wDAniREVdHvH28/6O7H1/g/w/L0rgKAcHI61z4nDxxFNwkdWDxc8LVVSH/Do9/orzrw748aBUtNXLOg4W4Ayw/3h3+vX616Bb3MF3As1vMksTdGRsivlcRhamHlaa+fQ+5wmOo4qN6b17dUS1j6l4X0jVSWntFWU/8ALWL5G/Tr+Oa2KKxhUnB3g7M6KlKFWPLUSa8zzzUPhvKuW0+9Vx2jnGD/AN9D/AVyWo6JqWlNi9tJI1zgPjKn8RxXuFIyq6lXUMpGCCMg16VHNq0NJ+8vxPHxGQ4eprT91/ev6+Z4DRXqWteA7C/DS2GLO464A/dt+Hb8PyrznUtLvNJujb3kJjfseoYeoPcV7eGxtLEL3Xr2Pm8Zl1fCP31dd1sU6KKK6zgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKt2Gp3umTebZXMkLd9p4P1HQ/jVSiplFSVmroqMpQfNF2Z3mm/EeRdqanaBx3lg4P/AHyeP1Fdbp/iXSNTwtvexiQ/8s5Pkb8j1/CvFqK86tlVCprH3Wexh89xNLSfvLz3+89/orxnS/FOraSVWG5aSEf8spfmX8O4/CvRfD3i20139yV8i8AyYmOQ3up7/SvHxOXVaC5t0fQYPN6GJah8Muz/AEZ0NUdW0i11mxa1ukyDyjj7yH1FXqK4YycWpRdmj05wjOLjJXTPDdW0ufR9Rls7gfMhyrDo69iKpV6d8QtMW40hNQVf3tswDH1Rjj+eP1rzGvrsFiPrFFTe/U+AzHCfVcQ6a23XoFFFFdZwhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHceB9D0rV9PuXvrUTSxy4B3sMAgehHvXU/8ACF+Hv+gcP+/r/wDxVcl8Ob4Q6pc2THH2iMMvuy9vyJ/KvS6+YzCrWp4iSUml6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 3,
"name": "Figma",
"description": "",
"url": "http://jobcy.test/job-tags/figma",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 7,
"name": "Python",
"description": "",
"url": "http://jobcy.test/job-tags/python",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 6,
"name": "Wordpress",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T06:22:08.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.216941",
"longitude": "-76.081784"
},
{
"id": 30,
"name": "Corporate Sales Representative",
"url": "http://jobcy.test/jobs/corporate-sales-representative",
"description": "Culpa quam velit repellendus temporibus et sint sapiente. Veritatis voluptatem delectus ipsum in quia est. Ad voluptate quae neque quia officiis molestias consequuntur.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1300.00",
"salary_to": "2000.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,000.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-11T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-11T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/14-500x300.png",
"company": {
"id": 14,
"name": "Generic",
"description": "Voluptatem quod reprehenderit quia. Veritatis nulla aut rerum ab qui porro temporibus. Perspiciatis ad tenetur adipisci et. Corrupti praesentium fugit quasi quibusdam cumque.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "17336 Ross Extension Apt. 400\nEast Royal, MT 48985-6505",
"email": null,
"phone": "+12039838388",
"website": "https://generic.com",
"year_founded": 1970,
"number_of_offices": 3,
"number_of_employees": 5,
"annual_revenue": "10M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/generic",
"latitude": "42.710053",
"longitude": "-74.868659",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-08T05:24:37.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 3,
"name": "Figma",
"description": "",
"url": "http://jobcy.test/job-tags/figma",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 5,
"name": "Lunacy",
"description": "",
"url": "http://jobcy.test/job-tags/lunacy",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 2,
"name": "PHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T13:01:17.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "42.710053",
"longitude": "-74.868659"
},
{
"id": 45,
"name": "Partner Program Manager",
"url": "http://jobcy.test/jobs/partner-program-manager",
"description": "Non saepe dolorem vitae mollitia vitae voluptatem. Ut perspiciatis omnis excepturi et doloremque nesciunt dolorum. Harum commodi libero aut fuga nobis non aperiam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "600.00",
"salary_to": "2100.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$600.00 - $2,100.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-09-03T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 3,
"name": "USA",
"code": "US"
},
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
}
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 1,
"name": "Illustrator",
"description": "",
"url": "http://jobcy.test/job-tags/illustrator",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 5,
"name": "Lunacy",
"description": "",
"url": "http://jobcy.test/job-tags/lunacy",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 2,
"name": "PHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T12:13:34.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
},
{
"id": 49,
"name": "Inside Account Manager",
"url": "http://jobcy.test/jobs/inside-account-manager",
"description": "Maxime error numquam voluptatum dolorem animi voluptas. Voluptatem voluptas nobis aut. At nobis consectetur autem quis vitae.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1100.00",
"salary_to": "2500.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,100.00 - $2,500.00 /weekly",
"hide_salary": 0,
"number_of_positions": 5,
"expire_date": "2025-07-10T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-18T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 2,
"name": "England",
"code": "UK"
},
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
}
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 8,
"name": "Human Resource",
"description": null,
"url": "http://jobcy.test/job-categories/human-resource",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 7,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 3,
"name": "Figma",
"description": "",
"url": "http://jobcy.test/job-tags/figma",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 7,
"name": "Python",
"description": "",
"url": "http://jobcy.test/job-tags/python",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 6,
"name": "Wordpress",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T01:43:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 19,
"name": "Systems Software Engineer",
"url": "http://jobcy.test/jobs/systems-software-engineer",
"description": "Modi odit quibusdam optio eum debitis provident. Officiis quaerat qui eos dolores culpa porro quia. Mollitia hic aspernatur officiis quis repellat.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1000.00",
"salary_to": "1700.00",
"salary_range": {
"value": "hourly",
"label": "Hourly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,000.00 - $1,700.00 /hourly",
"hide_salary": 0,
"number_of_positions": 7,
"expire_date": "2025-07-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-30T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/5-500x300.png",
"company": {
"id": 5,
"name": "Flutter",
"description": "In sed odio beatae ex hic veritatis iusto. Voluptatem eum error fuga a accusantium nobis hic. Autem nam iusto ea iste. Veritatis corrupti eveniet ullam qui.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "19682 Ferry Gardens Apt. 745\nShieldsberg, GA 19203",
"email": null,
"phone": "+14236345198",
"website": "https://flutter.io",
"year_founded": 1991,
"number_of_offices": 1,
"number_of_employees": 1,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"accounts": [
{
"id": 1,
"name": "Bret Wolf",
"first_name": "Bret",
"last_name": "Wolf",
"email": "employer@botble.com",
"phone": "+19179253040",
"avatar": "http://jobcy.test/storage/themes/jobcy/accounts/1.jpg",
"dob": "2007-01-08T00:00:00.000000Z",
"gender": null,
"description": "Software Developer",
"bio": "The Queen turned crimson with fury, and, after folding his arms and legs in all my limbs very supple By the use of repeating all that green stuff be?' said Alice. 'Well, I shan't go, at any rate.",
"address": "780 Schultz Track Suite 008\nRolfsonmouth, AR 49821-0677",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2024-11-21T18:00:39.000000Z",
"updated_at": "2025-07-04T05:00:08.000000Z"
},
{
"id": 4,
"name": "Steven Jobs",
"first_name": "Steven",
"last_name": "Jobs",
"email": "steven_jobs@botble.com",
"phone": "+18022640241",
"avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNzUK/9sAQwAIBgYHBgUIBwcHCQkICgwUDQwLCwwZEhMPFB0aHx4dGhwcICQuJyAiLCMcHCg3KSwwMTQ0NB8nOT04MjwuMzQy/9sAQwEJCQkMCwwYDQ0YMiEcITIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy/8AAEQgA+gD6AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AKKKK+7PzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi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6s+0ymhh62EjKUE2rp6Iwf8AhC/D3/QOH/f1/wD4qvN/FWnw6Z4iuba2j8uABSi5J4Kj19817NXEeP8AQZbuOPVLZC7wrsmUDnb1Dfhzn/61Vl2Lmq9qkm09NWTm+Ag8M5UYJNO+iW39anm9FFFfSnxoVLa3MtndRXMLbZImDqfcVFVrTdPn1TUIbO3Ul5GxnH3R3J9hUzcVFuWxUFJyShv0PcoZRNBHKOA6hh+Ip9NjjWKJI1+6ihR9BTq+Hdr6H6Yr21M3xBEJvDuooRn/AEdyPqFJH8q8Sr2vxHMLfw3qLscf6O6j6sMD9TXilfQ5Nf2cvU+T4it7aHe36hRRRXsnzoUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBPZXcthew3cDYliYMv+Fe1aTqlvrGnRXluflYfMueUbuDXh1a2g6/d6DeebAd8TcSwseHH9D7152YYL6xG8fiX9WPWyrMfqk3Gfwvfy8z2miszR9fsNbgD2so8wDLwtw6/h/UVp18vOEoS5ZKzPtqdSFSKnB3TOc1PwTo+pSNKI2tpW5LQEAE+46flisOT4ZjP7vVcD0aD/AOyrv6K6aePxFNWjL9fzOOrleEqvmlBX8tPyOEg+GkKsDcanI69xHEFP5kn+VdVpWh6fosRSygCs33pG5Zvqf6Vo0VNXF16ytOV0XQwGGw75qcLP7/zCiiue8ReK7TQ4miQrNekfLED933b0+nU1lSpTqy5IK7N61enRg51HZIx/iJq6x2kWlRtmSUiSUDso6A/U8/hXnNTXd1NfXUlzcSGSaRtzMe9Q19dhMOsPSUPv9T4HH4t4qu6r26egUUUV0nGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAD4pZIZFkido5FOVZTgj6Guo07x/q1mAlyI7yMf3/AJX/AO+h/UGuUorGrQp1VapG5vQxNag70pNHp1t8RtMkAFxbXMLewDj88g/pV9PHPh9hk3rL7GF/6CvIqK4ZZRh3tdfM9OGf4uK1s/l/k0euP468PqMi7d/ZYX/qKz7r4j6dGCLa0uJm/wBrCA/jyf0rzOiiOUYdb3fz/wAgnn2LktLL0X+dzp9T8davfq0cLLaRHtF94j/eP9MVzJJZizEkk5JPekorvpUadJWgrHl1sRVry5qsmwooorUxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z",
"dob": "2012-07-26T00:00:00.000000Z",
"gender": null,
"description": "Creative Designer",
"bio": "Alice to find that the meeting adjourn, for the Duchess replied, in a very short time the Queen was in livery: otherwise, judging by his face only, she would get up and said, 'It was a good way off.",
"address": "846 Mante Street\nPort Anabelletown, NE 15289-5599",
"type": {
"value": "employer",
"label": "Employer"
},
"credits": 0,
"is_public_profile": 1,
"hide_cv": 0,
"available_for_hiring": 1,
"resume_url": "",
"resume_name": "",
"cover_letter_url": null,
"unique_id": null,
"created_at": "2025-03-01T13:48:08.000000Z",
"updated_at": "2025-07-04T05:00:09.000000Z"
}
],
"logo": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/flutter",
"latitude": "43.033787",
"longitude": "-74.895574",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-31T00:17:12.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"country": {
"id": 4,
"name": "Holland",
"code": "HL"
},
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
}
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Technology",
"description": null,
"url": "http://jobcy.test/job-categories/technology",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 1,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"tags": [
{
"id": 3,
"name": "Figma",
"description": "",
"url": "http://jobcy.test/job-tags/figma",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
{
"id": 6,
"name": "PHP",
"description": "",
"url": "http://jobcy.test/job-tags/php",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
}
],
"skills": [
{
"id": 5,
"name": "CakePHP",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 21, 2025",
"created_at": "2025-06-21T20:42:58.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.033787",
"longitude": "-74.895574"
}
],
"links": {
"first": "http://jobcy.test/api/v1/jobs?page=1",
"last": "http://jobcy.test/api/v1/jobs?page=5",
"prev": null,
"next": "http://jobcy.test/api/v1/jobs?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 5,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/jobs?page=1",
"label": "1",
"active": true
},
{
"url": "http://jobcy.test/api/v1/jobs?page=2",
"label": "2",
"active": false
},
{
"url": "http://jobcy.test/api/v1/jobs?page=3",
"label": "3",
"active": false
},
{
"url": "http://jobcy.test/api/v1/jobs?page=4",
"label": "4",
"active": false
},
{
"url": "http://jobcy.test/api/v1/jobs?page=5",
"label": "5",
"active": false
},
{
"url": "http://jobcy.test/api/v1/jobs?page=2",
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/jobs",
"per_page": 12,
"to": 12,
"total": 51
},
"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 api/v1/jobs/{id}
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/jobs/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/jobs/1562"
);
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": "Job 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.
GET api/v1/jobs/{id}/related
GET api/v1/jobs/featured
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/jobs/featured" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/jobs/featured"
);
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": 23,
"name": "Senior Enterprise Advocate, EMEA",
"url": "http://jobcy.test/jobs/senior-enterprise-advocate-emea",
"description": "Iste nesciunt vel et a nesciunt qui. Aut ut autem dolorum provident. Placeat ut illum accusamus vitae mollitia amet. Earum id ut nihil maiores.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1500.00",
"salary_to": "2700.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,500.00 - $2,700.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/15-500x300.png",
"company": {
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 02, 2025",
"created_at": "2025-07-02T17:14:54.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.211576",
"longitude": "-75.471627"
},
{
"id": 7,
"name": "Senior System Engineer",
"url": "http://jobcy.test/jobs/senior-system-engineer",
"description": "Ut similique in itaque ipsum. Atque distinctio iusto aut harum eius. Ipsum sed possimus eum rerum ipsum ut. Enim nisi ut laborum dicta velit.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1200.00",
"salary_to": "1900.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $1,900.00 /daily",
"hide_salary": 0,
"number_of_positions": 3,
"expire_date": "2025-08-27T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T22:08:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 16,
"name": "Staff Engineering Manager: Actions Runtime",
"url": "http://jobcy.test/jobs/staff-engineering-manager-actions-runtime",
"description": "Repellat ullam quia nesciunt culpa. Ut hic corporis illo accusantium quis enim. Distinctio deleniti et enim sunt sed quaerat esse.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "2400.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,400.00 /daily",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-07-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/3-500x300.png",
"company": {
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T06:22:08.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.216941",
"longitude": "-76.081784"
},
{
"id": 30,
"name": "Corporate Sales Representative",
"url": "http://jobcy.test/jobs/corporate-sales-representative",
"description": "Culpa quam velit repellendus temporibus et sint sapiente. Veritatis voluptatem delectus ipsum in quia est. Ad voluptate quae neque quia officiis molestias consequuntur.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1300.00",
"salary_to": "2000.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,000.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-11T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-11T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/14-500x300.png",
"company": {
"id": 14,
"name": "Generic",
"description": "Voluptatem quod reprehenderit quia. Veritatis nulla aut rerum ab qui porro temporibus. Perspiciatis ad tenetur adipisci et. Corrupti praesentium fugit quasi quibusdam cumque.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "17336 Ross Extension Apt. 400\nEast Royal, MT 48985-6505",
"email": null,
"phone": "+12039838388",
"website": "https://generic.com",
"year_founded": 1970,
"number_of_offices": 3,
"number_of_employees": 5,
"annual_revenue": "10M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/generic",
"latitude": "42.710053",
"longitude": "-74.868659",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-08T05:24:37.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T13:01:17.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "42.710053",
"longitude": "-74.868659"
},
{
"id": 45,
"name": "Partner Program Manager",
"url": "http://jobcy.test/jobs/partner-program-manager",
"description": "Non saepe dolorem vitae mollitia vitae voluptatem. Ut perspiciatis omnis excepturi et doloremque nesciunt dolorum. Harum commodi libero aut fuga nobis non aperiam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "600.00",
"salary_to": "2100.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$600.00 - $2,100.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-09-03T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T12:13:34.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
},
{
"id": 6,
"name": "React Native Web Developer",
"url": "http://jobcy.test/jobs/react-native-web-developer",
"description": "Esse id officiis beatae dolore. Eaque voluptates aspernatur sunt blanditiis vitae. Deleniti aspernatur est quasi non deserunt. Quibusdam sint vero necessitatibus corporis quidem unde ut.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1000.00",
"salary_to": "1700.00",
"salary_range": {
"value": "monthly",
"label": "Monthly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,000.00 - $1,700.00 /monthly",
"hide_salary": 0,
"number_of_positions": 2,
"expire_date": "2025-07-13T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-27T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/7-500x300.png",
"company": {
"id": 7,
"name": "Apple",
"description": "Doloremque ducimus nihil autem quidem autem. Pariatur eligendi velit laboriosam consequatur. Non nisi blanditiis perferendis dolore.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "343 Grady Junction\nWest Chloe, RI 04973-9372",
"email": null,
"phone": "+16267551847",
"website": "https://www.apple.com",
"year_founded": 1999,
"number_of_offices": 5,
"number_of_employees": 5,
"annual_revenue": "3M",
"ceo": "Steve Jobs",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/7.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/7.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/apple",
"latitude": "42.478472",
"longitude": "-75.935329",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-06T21:16:31.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Technology",
"description": null,
"url": "http://jobcy.test/job-categories/technology",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 1,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 20, 2025",
"created_at": "2025-06-20T20:53:09.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "42.478472",
"longitude": "-75.935329"
},
{
"id": 42,
"name": "Senior Solutions Engineer",
"url": "http://jobcy.test/jobs/senior-solutions-engineer",
"description": "Rerum enim aliquid quae et vitae dolor. Esse non asperiores tempora eum. Pariatur ea praesentium quae qui est amet molestiae recusandae.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "700.00",
"salary_to": "1300.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$700.00 - $1,300.00 /daily",
"hide_salary": 0,
"number_of_positions": 2,
"expire_date": "2025-08-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-09T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/16-500x300.png",
"company": {
"id": 16,
"name": "Woocommerce",
"description": "Nulla temporibus alias consequatur nihil rerum. Eos dolor enim repellendus asperiores qui. Doloremque ut omnis hic et sint blanditiis deleniti.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "385 Faye Centers\nNorth Celestinotown, WY 74682",
"email": null,
"phone": "+14107429377",
"website": "https://woocommerce.com",
"year_founded": 1977,
"number_of_offices": 1,
"number_of_employees": 4,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/16.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/16.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/woocommerce",
"latitude": "43.498893",
"longitude": "-75.69478",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-10-11T00:34:55.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 3,
"name": "Full Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 20, 2025",
"created_at": "2025-06-20T17:31:51.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "43.498893",
"longitude": "-75.69478"
},
{
"id": 43,
"name": "Senior Service Delivery Engineer",
"url": "http://jobcy.test/jobs/senior-service-delivery-engineer",
"description": "Ratione neque autem laborum repudiandae est. Voluptatem voluptatum velit ducimus exercitationem rerum nesciunt optio. Eligendi perferendis et debitis eveniet vero.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "2700.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,700.00 /weekly",
"hide_salary": 0,
"number_of_positions": 5,
"expire_date": "2025-07-11T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-26T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/15-500x300.png",
"company": {
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 19, 2025",
"created_at": "2025-06-19T13:52:41.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.211576",
"longitude": "-75.471627"
},
{
"id": 38,
"name": "Technical Partner Manager",
"url": "http://jobcy.test/jobs/technical-partner-manager",
"description": "Et sapiente odit voluptates et beatae quam et. Repellat soluta amet vel in. Dolor iure voluptatum magnam unde eos omnis. Et id qui qui repellat recusandae.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1100.00",
"salary_to": "2200.00",
"salary_range": {
"value": "monthly",
"label": "Monthly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,100.00 - $2,200.00 /monthly",
"hide_salary": 0,
"number_of_positions": 2,
"expire_date": "2025-07-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-03T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/5-500x300.png",
"company": {
"id": 5,
"name": "Flutter",
"description": "In sed odio beatae ex hic veritatis iusto. Voluptatem eum error fuga a accusantium nobis hic. Autem nam iusto ea iste. Veritatis corrupti eveniet ullam qui.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "19682 Ferry Gardens Apt. 745\nShieldsberg, GA 19203",
"email": null,
"phone": "+14236345198",
"website": "https://flutter.io",
"year_founded": 1991,
"number_of_offices": 1,
"number_of_employees": 1,
"annual_revenue": "8M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/5.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/flutter",
"latitude": "43.033787",
"longitude": "-74.895574",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-31T00:17:12.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 8,
"name": "Human Resource",
"description": null,
"url": "http://jobcy.test/job-categories/human-resource",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 7,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 19, 2025",
"created_at": "2025-06-19T07:53:52.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.033787",
"longitude": "-74.895574"
},
{
"id": 3,
"name": "Java Software Engineer",
"url": "http://jobcy.test/jobs/java-software-engineer",
"description": "Quaerat et dolor asperiores quia. Esse ipsa labore non in. Dolorum consequatur esse qui quos.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1100.00",
"salary_to": "2400.00",
"salary_range": {
"value": "yearly",
"label": "Yearly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,100.00 - $2,400.00 /yearly",
"hide_salary": 0,
"number_of_positions": 5,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-24T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/16-500x300.png",
"company": {
"id": 16,
"name": "Woocommerce",
"description": "Nulla temporibus alias consequatur nihil rerum. Eos dolor enim repellendus asperiores qui. Doloremque ut omnis hic et sint blanditiis deleniti.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "385 Faye Centers\nNorth Celestinotown, WY 74682",
"email": null,
"phone": "+14107429377",
"website": "https://woocommerce.com",
"year_founded": 1977,
"number_of_offices": 1,
"number_of_employees": 4,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/16.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/16.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/woocommerce",
"latitude": "43.498893",
"longitude": "-75.69478",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-10-11T00:34:55.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 18, 2025",
"created_at": "2025-06-18T17:34:38.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "43.498893",
"longitude": "-75.69478"
}
],
"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 api/v1/jobs/recent
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/jobs/recent" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/jobs/recent"
);
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": 14,
"name": "Software Engineer Actions Platform",
"url": "http://jobcy.test/jobs/software-engineer-actions-platform",
"description": "Iure nisi perspiciatis eum quasi. Et recusandae aut dolorem corporis illo quo pariatur recusandae. Incidunt iure laborum perspiciatis molestiae sunt praesentium quia aliquam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1200.00",
"salary_to": "2500.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $2,500.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-07T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 03, 2025",
"created_at": "2025-07-03T08:39:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
},
{
"id": 17,
"name": "Staff Engineering Manager, Packages",
"url": "http://jobcy.test/jobs/staff-engineering-manager-packages",
"description": "Autem adipisci saepe aut enim delectus. Beatae nesciunt qui ad qui aliquid illo. Commodi aperiam voluptatem nobis qui. Est est neque et.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "1900.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $1,900.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-10T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/2-500x300.png",
"company": {
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 03, 2025",
"created_at": "2025-07-03T00:44:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.001292",
"longitude": "-75.000273"
},
{
"id": 23,
"name": "Senior Enterprise Advocate, EMEA",
"url": "http://jobcy.test/jobs/senior-enterprise-advocate-emea",
"description": "Iste nesciunt vel et a nesciunt qui. Aut ut autem dolorum provident. Placeat ut illum accusamus vitae mollitia amet. Earum id ut nihil maiores.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1500.00",
"salary_to": "2700.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,500.00 - $2,700.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/15-500x300.png",
"company": {
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 02, 2025",
"created_at": "2025-07-02T17:14:54.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.211576",
"longitude": "-75.471627"
},
{
"id": 37,
"name": "Support Engineer (Enterprise Support Japanese)",
"url": "http://jobcy.test/jobs/support-engineer-enterprise-support-japanese",
"description": "Neque magni reiciendis nostrum eius. Explicabo quis aut consequatur ea omnis. Quia vitae quaerat commodi dicta distinctio hic qui. Sunt voluptatem officiis libero ducimus.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "800.00",
"salary_to": "2200.00",
"salary_range": {
"value": "hourly",
"label": "Hourly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$800.00 - $2,200.00 /hourly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-07-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-24T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T23:42:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 7,
"name": "Senior System Engineer",
"url": "http://jobcy.test/jobs/senior-system-engineer",
"description": "Ut similique in itaque ipsum. Atque distinctio iusto aut harum eius. Ipsum sed possimus eum rerum ipsum ut. Enim nisi ut laborum dicta velit.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1200.00",
"salary_to": "1900.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $1,900.00 /daily",
"hide_salary": 0,
"number_of_positions": 3,
"expire_date": "2025-08-27T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T22:08:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 34,
"name": "Enterprise Account Executive",
"url": "http://jobcy.test/jobs/enterprise-account-executive",
"description": "Ea non aut tempore molestiae. Rerum sit consequuntur qui nemo placeat repellat eos excepturi. Tempora error animi dolor eaque. Sint unde vitae veniam sapiente illo libero vel.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1400.00",
"salary_to": "2800.00",
"salary_range": {
"value": "monthly",
"label": "Monthly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,400.00 - $2,800.00 /monthly",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-08-15T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-19T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/9-500x300.png",
"company": {
"id": 9,
"name": "Vibe",
"description": "Et excepturi iure sed rem doloremque dicta et ipsam. Placeat laboriosam sint nisi molestiae. Facilis voluptates non et et inventore dolore voluptas quia.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "340 Hegmann Greens Suite 288\nNorth Brendenbury, MN 40571-4172",
"email": null,
"phone": "+12408300228",
"website": "https://www.vibe.com",
"year_founded": 2013,
"number_of_offices": 1,
"number_of_employees": 7,
"annual_revenue": "4M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/vibe",
"latitude": "43.477698",
"longitude": "-75.524817",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-05T19:42:42.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Technology",
"description": null,
"url": "http://jobcy.test/job-categories/technology",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 1,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 28, 2025",
"created_at": "2025-06-28T23:05:09.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
},
"latitude": "43.477698",
"longitude": "-75.524817"
},
{
"id": 9,
"name": "Lead Quality Control QA",
"url": "http://jobcy.test/jobs/lead-quality-control-qa",
"description": "Id voluptates commodi aut mollitia earum ut. Et et eaque quo et est. Sit quae fugit accusantium ab et soluta ea sed.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "800.00",
"salary_to": "1800.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$800.00 - $1,800.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-07-14T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-25T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/2-500x300.png",
"company": {
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 2,
"name": "Freelance",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T07:12:14.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.001292",
"longitude": "-75.000273"
},
{
"id": 16,
"name": "Staff Engineering Manager: Actions Runtime",
"url": "http://jobcy.test/jobs/staff-engineering-manager-actions-runtime",
"description": "Repellat ullam quia nesciunt culpa. Ut hic corporis illo accusantium quis enim. Distinctio deleniti et enim sunt sed quaerat esse.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "2400.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,400.00 /daily",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-07-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/3-500x300.png",
"company": {
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T06:22:08.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.216941",
"longitude": "-76.081784"
},
{
"id": 30,
"name": "Corporate Sales Representative",
"url": "http://jobcy.test/jobs/corporate-sales-representative",
"description": "Culpa quam velit repellendus temporibus et sint sapiente. Veritatis voluptatem delectus ipsum in quia est. Ad voluptate quae neque quia officiis molestias consequuntur.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1300.00",
"salary_to": "2000.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,000.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-11T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-11T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/14-500x300.png",
"company": {
"id": 14,
"name": "Generic",
"description": "Voluptatem quod reprehenderit quia. Veritatis nulla aut rerum ab qui porro temporibus. Perspiciatis ad tenetur adipisci et. Corrupti praesentium fugit quasi quibusdam cumque.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "17336 Ross Extension Apt. 400\nEast Royal, MT 48985-6505",
"email": null,
"phone": "+12039838388",
"website": "https://generic.com",
"year_founded": 1970,
"number_of_offices": 3,
"number_of_employees": 5,
"annual_revenue": "10M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/generic",
"latitude": "42.710053",
"longitude": "-74.868659",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-08T05:24:37.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T13:01:17.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "42.710053",
"longitude": "-74.868659"
},
{
"id": 45,
"name": "Partner Program Manager",
"url": "http://jobcy.test/jobs/partner-program-manager",
"description": "Non saepe dolorem vitae mollitia vitae voluptatem. Ut perspiciatis omnis excepturi et doloremque nesciunt dolorum. Harum commodi libero aut fuga nobis non aperiam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "600.00",
"salary_to": "2100.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$600.00 - $2,100.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-09-03T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T12:13:34.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
}
],
"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 api/v1/jobs/popular
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/jobs/popular" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/jobs/popular"
);
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": 14,
"name": "Software Engineer Actions Platform",
"url": "http://jobcy.test/jobs/software-engineer-actions-platform",
"description": "Iure nisi perspiciatis eum quasi. Et recusandae aut dolorem corporis illo quo pariatur recusandae. Incidunt iure laborum perspiciatis molestiae sunt praesentium quia aliquam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1200.00",
"salary_to": "2500.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $2,500.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-07T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 03, 2025",
"created_at": "2025-07-03T08:39:07.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
},
{
"id": 17,
"name": "Staff Engineering Manager, Packages",
"url": "http://jobcy.test/jobs/staff-engineering-manager-packages",
"description": "Autem adipisci saepe aut enim delectus. Beatae nesciunt qui ad qui aliquid illo. Commodi aperiam voluptatem nobis qui. Est est neque et.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "1900.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $1,900.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-10T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/2-500x300.png",
"company": {
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 4,
"name": "Internship",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 3,
"name": "Government",
"description": null,
"url": "http://jobcy.test/job-categories/government",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 2,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 03, 2025",
"created_at": "2025-07-03T00:44:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.001292",
"longitude": "-75.000273"
},
{
"id": 23,
"name": "Senior Enterprise Advocate, EMEA",
"url": "http://jobcy.test/jobs/senior-enterprise-advocate-emea",
"description": "Iste nesciunt vel et a nesciunt qui. Aut ut autem dolorum provident. Placeat ut illum accusamus vitae mollitia amet. Earum id ut nihil maiores.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1500.00",
"salary_to": "2700.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,500.00 - $2,700.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/15-500x300.png",
"company": {
"id": 15,
"name": "Reveal",
"description": "Ut repudiandae dolor dolorem. Omnis atque doloremque dolor quo expedita. At ut dolorem voluptatem aperiam eos accusamus.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "800 McDermott Gardens Apt. 273\nCortezburgh, GA 65387",
"email": null,
"phone": "+14255154914",
"website": "https://reveal.com",
"year_founded": 2022,
"number_of_offices": 8,
"number_of_employees": 10,
"annual_revenue": "1M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/15.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/reveal",
"latitude": "43.211576",
"longitude": "-75.471627",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-05-24T02:41:01.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jul 02, 2025",
"created_at": "2025-07-02T17:14:54.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.211576",
"longitude": "-75.471627"
},
{
"id": 37,
"name": "Support Engineer (Enterprise Support Japanese)",
"url": "http://jobcy.test/jobs/support-engineer-enterprise-support-japanese",
"description": "Neque magni reiciendis nostrum eius. Explicabo quis aut consequatur ea omnis. Quia vitae quaerat commodi dicta distinctio hic qui. Sunt voluptatem officiis libero ducimus.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "800.00",
"salary_to": "2200.00",
"salary_range": {
"value": "hourly",
"label": "Hourly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$800.00 - $2,200.00 /hourly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-07-26T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-24T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T23:42:02.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 7,
"name": "Senior System Engineer",
"url": "http://jobcy.test/jobs/senior-system-engineer",
"description": "Ut similique in itaque ipsum. Atque distinctio iusto aut harum eius. Ipsum sed possimus eum rerum ipsum ut. Enim nisi ut laborum dicta velit.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1200.00",
"salary_to": "1900.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,200.00 - $1,900.00 /daily",
"hide_salary": 0,
"number_of_positions": 3,
"expire_date": "2025-08-27T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/13-500x300.png",
"company": {
"id": 13,
"name": "Magento",
"description": "Modi omnis est at ut enim. Omnis et deleniti cumque ea maiores. Eius veniam itaque molestiae. Quis minima sed delectus. Dolorem saepe nihil voluptatem voluptate et adipisci.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9947 Name Mount Apt. 688\nNorth Martin, HI 52380",
"email": null,
"phone": "+13059329348",
"website": "https://magento.com",
"year_founded": 1978,
"number_of_offices": 4,
"number_of_employees": 2,
"annual_revenue": "8M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/13.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/magento",
"latitude": "42.787679",
"longitude": "-75.100042",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-02-13T11:40:45.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 30, 2025",
"created_at": "2025-06-30T22:08:18.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 2,
"name": "England"
},
"city": {
"id": 2,
"name": "London"
},
"latitude": "42.787679",
"longitude": "-75.100042"
},
{
"id": 34,
"name": "Enterprise Account Executive",
"url": "http://jobcy.test/jobs/enterprise-account-executive",
"description": "Ea non aut tempore molestiae. Rerum sit consequuntur qui nemo placeat repellat eos excepturi. Tempora error animi dolor eaque. Sint unde vitae veniam sapiente illo libero vel.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1400.00",
"salary_to": "2800.00",
"salary_range": {
"value": "monthly",
"label": "Monthly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,400.00 - $2,800.00 /monthly",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-08-15T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-19T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/9-500x300.png",
"company": {
"id": 9,
"name": "Vibe",
"description": "Et excepturi iure sed rem doloremque dicta et ipsam. Placeat laboriosam sint nisi molestiae. Facilis voluptates non et et inventore dolore voluptas quia.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "340 Hegmann Greens Suite 288\nNorth Brendenbury, MN 40571-4172",
"email": null,
"phone": "+12408300228",
"website": "https://www.vibe.com",
"year_founded": 2013,
"number_of_offices": 1,
"number_of_employees": 7,
"annual_revenue": "4M",
"ceo": "John Doe",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/9.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/vibe",
"latitude": "43.477698",
"longitude": "-75.524817",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-05T19:42:42.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 2,
"name": "Technology",
"description": null,
"url": "http://jobcy.test/job-categories/technology",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 1,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 28, 2025",
"created_at": "2025-06-28T23:05:09.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 6,
"name": "Germany"
},
"city": {
"id": 6,
"name": "Berlin"
},
"latitude": "43.477698",
"longitude": "-75.524817"
},
{
"id": 9,
"name": "Lead Quality Control QA",
"url": "http://jobcy.test/jobs/lead-quality-control-qa",
"description": "Id voluptates commodi aut mollitia earum ut. Et et eaque quo et est. Sit quae fugit accusantium ab et soluta ea sed.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "800.00",
"salary_to": "1800.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$800.00 - $1,800.00 /weekly",
"hide_salary": 0,
"number_of_positions": 8,
"expire_date": "2025-07-14T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-25T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 0,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/2-500x300.png",
"company": {
"id": 2,
"name": "Linkedin",
"description": "Et ut maxime ut nulla sit recusandae. Accusantium et mollitia ex ad. Ullam quis aut magnam molestias molestias sint molestias. Sed debitis molestiae modi quam sed fugit.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "521 Rosamond Cape\nWest Carlos, ND 06536",
"email": null,
"phone": "+17795383003",
"website": "https://www.linkedin.com",
"year_founded": 1990,
"number_of_offices": 8,
"number_of_employees": 4,
"annual_revenue": "8M",
"ceo": "Jeff Weiner",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/2.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/linkedin",
"latitude": "43.001292",
"longitude": "-75.000273",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-08-20T23:39:56.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 2,
"name": "Freelance",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 6,
"name": "Tele-communications",
"description": null,
"url": "http://jobcy.test/job-categories/tele-communications",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 5,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T07:12:14.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 4,
"name": "Holland"
},
"city": {
"id": 4,
"name": "New York"
},
"latitude": "43.001292",
"longitude": "-75.000273"
},
{
"id": 16,
"name": "Staff Engineering Manager: Actions Runtime",
"url": "http://jobcy.test/jobs/staff-engineering-manager-actions-runtime",
"description": "Repellat ullam quia nesciunt culpa. Ut hic corporis illo accusantium quis enim. Distinctio deleniti et enim sunt sed quaerat esse.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 0,
"salary_from": "1300.00",
"salary_to": "2400.00",
"salary_range": {
"value": "daily",
"label": "Daily"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,400.00 /daily",
"hide_salary": 0,
"number_of_positions": 6,
"expire_date": "2025-07-21T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-07-13T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 1,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/3-500x300.png",
"company": {
"id": 3,
"name": "Line",
"description": "Ipsum autem libero temporibus voluptates. Aut a est in tempore porro. Ipsum quia voluptatibus numquam sequi.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "917 Dickinson Gardens Suite 882\nPort Margarette, CA 06405-5975",
"email": null,
"phone": "+13608239754",
"website": "https://line.me",
"year_founded": 1982,
"number_of_offices": 7,
"number_of_employees": 2,
"annual_revenue": "2M",
"ceo": "Nakamura",
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/3.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/line",
"latitude": "43.216941",
"longitude": "-76.081784",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-29T16:05:26.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 5,
"name": "Construction / Facilities",
"description": null,
"url": "http://jobcy.test/job-categories/construction-facilities",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 4,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 9,
"name": "Consumer Packaged Goods (CPG)",
"description": null,
"url": "http://jobcy.test/job-categories/consumer-packaged-goods-cpg",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 8,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 26, 2025",
"created_at": "2025-06-26T06:22:08.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.216941",
"longitude": "-76.081784"
},
{
"id": 30,
"name": "Corporate Sales Representative",
"url": "http://jobcy.test/jobs/corporate-sales-representative",
"description": "Culpa quam velit repellendus temporibus et sint sapiente. Veritatis voluptatem delectus ipsum in quia est. Ad voluptate quae neque quia officiis molestias consequuntur.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "1300.00",
"salary_to": "2000.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$1,300.00 - $2,000.00 /weekly",
"hide_salary": 0,
"number_of_positions": 10,
"expire_date": "2025-07-11T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-08-11T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/14-500x300.png",
"company": {
"id": 14,
"name": "Generic",
"description": "Voluptatem quod reprehenderit quia. Veritatis nulla aut rerum ab qui porro temporibus. Perspiciatis ad tenetur adipisci et. Corrupti praesentium fugit quasi quibusdam cumque.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "17336 Ross Extension Apt. 400\nEast Royal, MT 48985-6505",
"email": null,
"phone": "+12039838388",
"website": "https://generic.com",
"year_founded": 1970,
"number_of_offices": 3,
"number_of_employees": 5,
"annual_revenue": "10M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/14.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/generic",
"latitude": "42.710053",
"longitude": "-74.868659",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2024-09-08T05:24:37.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": 1,
"title": "USD",
"symbol": "$",
"is_prefix_symbol": 1,
"order": 0,
"decimals": 2,
"is_default": 1,
"exchange_rate": 1,
"status": null,
"created_at": "2025-07-04T05:00:10.000000Z",
"updated_at": "2025-07-04T05:00:10.000000Z"
},
"job_types": [
{
"id": 5,
"name": "Part Time",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 10,
"name": "Manufacturing",
"description": null,
"url": "http://jobcy.test/job-categories/manufacturing",
"icon": null,
"icon_image": null,
"is_featured": 0,
"order": 9,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T13:01:17.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "42.710053",
"longitude": "-74.868659"
},
{
"id": 45,
"name": "Partner Program Manager",
"url": "http://jobcy.test/jobs/partner-program-manager",
"description": "Non saepe dolorem vitae mollitia vitae voluptatem. Ut perspiciatis omnis excepturi et doloremque nesciunt dolorum. Harum commodi libero aut fuga nobis non aperiam.",
"content": "<h5>Responsibilities</h5>\n <div>\n <p>As a Product Designer, you will work within a Product Delivery Team fused with UX, engineering, product and data talent.</p>\n <ul>\n <li>Have sound knowledge of commercial activities.</li>\n <li>Build next-generation web applications with a focus on the client side</li>\n <li>Work on multiple projects at once, and consistently meet draft deadlines</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Revise the work of previous designers to create a unified aesthetic for our brand materials</li>\n </ul>\n </div>\n <h5>Qualification </h5>\n <div>\n <ul>\n <li>B.C.A / M.C.A under National University course complete.</li>\n <li>3 or more years of professional design experience</li>\n <li>have already graduated or are currently in any year of study</li>\n <li>Advanced degree or equivalent experience in graphic and web design</li>\n </ul>\n </div>",
"address": null,
"status": {
"value": "published",
"label": "Published"
},
"apply_url": "",
"external_apply_behavior": null,
"is_freelance": 1,
"salary_from": "600.00",
"salary_to": "2100.00",
"salary_range": {
"value": "weekly",
"label": "Weekly"
},
"salary_type": {
"value": "fixed",
"label": "Fixed"
},
"salary_text": "$600.00 - $2,100.00 /weekly",
"hide_salary": 0,
"number_of_positions": 9,
"expire_date": "2025-08-07T00:00:00.000000Z",
"start_date": null,
"application_closing_date": "2025-09-03T00:00:00.000000Z",
"views": 0,
"number_of_applied": 0,
"hide_company": 0,
"is_featured": 1,
"auto_renew": 0,
"never_expired": 0,
"is_job_open": true,
"zip_code": null,
"unique_id": null,
"image": "http://jobcy.test/storage/themes/jobcy/companies/12-500x300.png",
"company": {
"id": 12,
"name": "Envato",
"description": "Sed vero itaque fugit labore et molestiae. Autem inventore ea cum possimus dolores enim voluptas. Distinctio neque facere dolorum ut.",
"content": "<p class=\"text-muted\"> Objectively pursue diverse catalysts for change for interoperable meta-services. Distinctively re-engineer\n revolutionary meta-services and premium architectures. Intrinsically incubate intuitive opportunities and\n real-time potentialities. Appropriately communicate one-to-one technology.</p>\n\n <p class=\"text-muted\">Intrinsically incubate intuitive opportunities and real-time potentialities Appropriately communicate\n one-to-one technology.</p>\n\n <p class=\"text-muted\"> Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit\n seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa\n eiusmod Pinterest in do umami readymade swag.</p>",
"address": "9102 Bechtelar Oval\nPort Quentin, AK 34519-0516",
"email": null,
"phone": "+17817757520",
"website": "https://envato.com",
"year_founded": 2025,
"number_of_offices": 6,
"number_of_employees": 7,
"annual_revenue": "2M",
"ceo": null,
"is_featured": 1,
"status": {
"value": "published",
"label": "Published"
},
"postal_code": null,
"tax_id": null,
"unique_id": null,
"logo": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"logo_thumb": "http://jobcy.test/storage/themes/jobcy/companies/12.png",
"cover_image_url": "http://jobcy.test/storage/themes/jobcy/general/cover-image.jpg",
"url": "http://jobcy.test/companies/envato",
"latitude": "43.404131",
"longitude": "-75.392775",
"facebook": null,
"twitter": null,
"linkedin": null,
"instagram": null,
"created_at": "2025-04-07T18:17:00.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z"
},
"currency": {
"id": null,
"title": null,
"symbol": null,
"is_prefix_symbol": null,
"order": null,
"decimals": null,
"is_default": null,
"exchange_rate": null,
"status": null,
"created_at": null,
"updated_at": null
},
"job_types": [
{
"id": 1,
"name": "Contract",
"order": 0,
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"categories": [
{
"id": 1,
"name": "IT & Software",
"description": null,
"url": "http://jobcy.test/job-categories/it-software",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 0,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 4,
"name": "Accounting / Finance",
"description": null,
"url": "http://jobcy.test/job-categories/accounting-finance",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 3,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
},
{
"id": 7,
"name": "Design & Multimedia",
"description": null,
"url": "http://jobcy.test/job-categories/design-multimedia",
"icon": null,
"icon_image": null,
"is_featured": 1,
"order": 6,
"created_at": "2025-07-04T05:00:06.000000Z",
"updated_at": "2025-07-04T05:00:06.000000Z"
}
],
"date": "Jun 24, 2025",
"created_at": "2025-06-24T12:13:34.000000Z",
"updated_at": "2025-07-04T05:00:07.000000Z",
"state": {
"id": 3,
"name": "New York"
},
"city": {
"id": 3,
"name": "New York"
},
"latitude": "43.404131",
"longitude": "-75.392775"
}
],
"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 for a job
requires authentication
Submit an application for a specific job. Requires authentication.
Example request:
curl --request POST \
"http://jobcy.test/api/v1/jobs/1562/apply" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"job_type\": \"internal\",
\"email\": \"john.doe@example.com\",
\"message\": \"I am very interested in this position...\"
}"
const url = new URL(
"http://jobcy.test/api/v1/jobs/1562/apply"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"job_type": "internal",
"email": "john.doe@example.com",
"message": "I am very interested in this position..."
};
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.
Languages
Get list of available languages
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/languages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 "http://jobcy.test/api/v1/languages/current" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 "http://jobcy.test/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(
"http://jobcy.test/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 "http://jobcy.test/api/v1/notifications/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/notifications/mark-all-read" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/notifications/1562/read" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/notifications/1562/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 \
"http://jobcy.test/api/v1/notifications/1562/clicked" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/notifications/1562/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 \
"http://jobcy.test/api/v1/notifications/1562" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/notifications/1562"
);
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.
Page
List pages
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/pages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/pages"
);
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": 1,
"name": "Homepage",
"slug": "homepage",
"description": null,
"image": null,
"template": "homepage",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 2,
"name": "Blog",
"slug": "blog",
"description": null,
"image": null,
"template": "default",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 3,
"name": "Contact",
"slug": "contact",
"description": null,
"image": null,
"template": "default",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 4,
"name": "Cookie Policy",
"slug": "cookie-policy",
"description": null,
"image": null,
"template": "static",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 5,
"name": "FAQ",
"slug": "faq",
"description": null,
"image": null,
"template": "default",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 6,
"name": "About us",
"slug": "about-us",
"description": null,
"image": null,
"template": "static",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 7,
"name": "Services",
"slug": "services",
"description": null,
"image": null,
"template": "static",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 8,
"name": "Terms Of Use",
"slug": "terms-of-use",
"description": null,
"image": null,
"template": "static",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 9,
"name": "Terms & Conditions",
"slug": "terms-conditions",
"description": null,
"image": null,
"template": "static",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
},
{
"id": 10,
"name": "Job Categories",
"slug": "job-categories",
"description": null,
"image": null,
"template": "default",
"status": {
"value": "published",
"label": "Published"
},
"created_at": "2025-07-04T05:00:02.000000Z",
"updated_at": "2025-07-04T05:00:02.000000Z"
}
],
"links": {
"first": "http://jobcy.test/api/v1/pages?page=1",
"last": "http://jobcy.test/api/v1/pages?page=2",
"prev": null,
"next": "http://jobcy.test/api/v1/pages?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://jobcy.test/api/v1/pages?page=1",
"label": "1",
"active": true
},
{
"url": "http://jobcy.test/api/v1/pages?page=2",
"label": "2",
"active": false
},
{
"url": "http://jobcy.test/api/v1/pages?page=2",
"label": "Next »",
"active": false
}
],
"path": "http://jobcy.test/api/v1/pages",
"per_page": 10,
"to": 10,
"total": 17
},
"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 page by ID
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/pages/1562?id=17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/api/v1/pages/1562"
);
const params = {
"id": "17",
};
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.
Profile
Get the user profile information.
requires authentication
Example request:
curl --request GET \
--get "http://jobcy.test/api/v1/me" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/me" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjur\",
\"last_name\": \"yvojcybzvrbyickznkygloigmkwxphlvazjrcnfbaqywuxhgjjmzuxjubqouzswiwxtrkimfca\",
\"name\": \"consequatur\",
\"phone\": \"consequatur\",
\"dob\": \"consequatur\",
\"gender\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"email\": \"qkunze@example.com\"
}"
const url = new URL(
"http://jobcy.test/api/v1/me"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjur",
"last_name": "yvojcybzvrbyickznkygloigmkwxphlvazjrcnfbaqywuxhgjjmzuxjubqouzswiwxtrkimfca",
"name": "consequatur",
"phone": "consequatur",
"dob": "consequatur",
"gender": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"email": "qkunze@example.com"
};
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 \
"http://jobcy.test/api/v1/update/avatar" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "avatar=@/private/var/folders/pv/8ss1l0s14ylczgg_279blg680000gn/T/phpabIoMh" const url = new URL(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/update/password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\",
\"old_password\": \"consequatur\"
}"
const url = new URL(
"http://jobcy.test/api/v1/update/password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"password": "O[2UZ5ij-e\/dl4m{o,",
"old_password": "consequatur"
};
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 "http://jobcy.test/api/v1/settings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://jobcy.test/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 \
"http://jobcy.test/api/v1/settings" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"biometric_enabled\": false,
\"notification_enabled\": false,
\"language\": \"consequatur\",
\"currency\": \"consequatur\",
\"theme\": \"consequatur\",
\"timezone\": \"Europe\\/Malta\"
}"
const url = new URL(
"http://jobcy.test/api/v1/settings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"biometric_enabled": false,
"notification_enabled": false,
"language": "consequatur",
"currency": "consequatur",
"theme": "consequatur",
"timezone": "Europe\/Malta"
};
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
Submit a review
requires authentication
Submit a review for a company or candidate. Requires authentication.
Example request:
curl --request POST \
"http://jobcy.test/api/v1/reviews" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reviewable_type\": \"Botble\\\\JobBoard\\\\Models\\\\Company\",
\"reviewable_id\": 1
}"
const url = new URL(
"http://jobcy.test/api/v1/reviews"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reviewable_type": "Botble\\JobBoard\\Models\\Company",
"reviewable_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.