MENU navbar-image

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 "https://jobcy.botble.com/api/v1/account/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/profile

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Update user profile

requires authentication

Update the authenticated user's profile information.

Example request:
curl --request PUT \
    "https://jobcy.botble.com/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(
    "https://jobcy.botble.com/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());

Request      

PUT api/v1/account/profile

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

first_name   string     

User's first name. Must not be greater than 120 characters. Must be at least 2 characters. Example: John

last_name   string     

User's last name. Must not be greater than 120 characters. Must be at least 2 characters. Example: Doe

phone   string  optional    

User's phone number. Must match the regex /^([0-9\s-+()]*)$/. Must be at least 8 characters. Must not be greater than 15 characters. Example: +1234567890

dob   string  optional    

Date of birth. Must be a valid date. Example: 1990-01-01

address   string  optional    

User's address. Must not be greater than 250 characters. Example: 123 Main St, City, State

gender   string  optional    

User's gender. Example: male

Must be one of:
  • male
  • female
  • other
description   string  optional    

User's description. Must not be greater than 4000 characters. Example: Experienced software developer...

bio   string  optional    

User's bio. Example: Passionate about technology...

country_id   number  optional    

Country ID. Example: 1

state_id   number  optional    

State ID. Example: 1

city_id   number  optional    

City ID. Example: 1

locale   string  optional    

Example: en

Must be one of:
  • ar
  • en
  • fr
  • vi

POST api/v1/account/avatar

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/account/avatar" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "avatar=@/tmp/phpmPbhby" 
const url = new URL(
    "https://jobcy.botble.com/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());

Request      

POST api/v1/account/avatar

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

avatar   file     

Must be an image. Must not be greater than 2048 kilobytes. Example: /tmp/phpmPbhby

GET api/v1/account/applications

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/applications" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/applications

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/account/applications/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/applications/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/applications/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/account/applications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the application. Example: 564

DELETE api/v1/account/applications/{id}

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/account/applications/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/applications/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/account/applications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the application. Example: 564

GET api/v1/account/saved-jobs

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/saved-jobs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/saved-jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/account/saved-jobs/{jobId}

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/account/saved-jobs/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/saved-jobs/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/account/saved-jobs/{jobId}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

jobId   string     

Example: 564

DELETE api/v1/account/saved-jobs/{jobId}

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/account/saved-jobs/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/saved-jobs/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/account/saved-jobs/{jobId}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

jobId   string     

Example: 564

GET api/v1/account/companies

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/companies" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/companies

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/account/jobs

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/jobs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/account/jobs

Example request:
curl --request POST \
    "https://jobcy.botble.com/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\": \"published\",
    \"salary_type\": \"fixed\",
    \"latitude\": \"bngzmiyvdljnikhw\",
    \"longitude\": \"aykcmyuwpwlvqwrs\",
    \"zip_code\": \"itcpscqldzsnrwtu\",
    \"number_of_positions\": 2,
    \"apply_url\": \"http:\\/\\/raynor.org\\/molestias-fugit-deleniti-distinctio-eum-doloremque-id\",
    \"external_apply_behavior\": \"new_tab\",
    \"unique_id\": \"architecto\",
    \"company_id\": 1,
    \"custom_fields\": [
        {
            \"name\": \"n\",
            \"value\": \"g\"
        }
    ]
}"
const url = new URL(
    "https://jobcy.botble.com/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": "published",
    "salary_type": "fixed",
    "latitude": "bngzmiyvdljnikhw",
    "longitude": "aykcmyuwpwlvqwrs",
    "zip_code": "itcpscqldzsnrwtu",
    "number_of_positions": 2,
    "apply_url": "http:\/\/raynor.org\/molestias-fugit-deleniti-distinctio-eum-doloremque-id",
    "external_apply_behavior": "new_tab",
    "unique_id": "architecto",
    "company_id": 1,
    "custom_fields": [
        {
            "name": "n",
            "value": "g"
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/account/jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

Job title. Must be at least 3 characters. Must not be greater than 120 characters. Example: Senior Software Engineer

description   string  optional    

Job description. Must not be greater than 400 characters. Example: We are looking for a senior software engineer...

content   string  optional    

Detailed job content. Must not be greater than 100000 characters. Example: Full job description with requirements...

status   string  optional    

Example: published

Must be one of:
  • published
  • draft
  • pending
  • closed
salary_type   string  optional    

Type of salary (fixed, negotiable, competitive, hidden). Example: fixed

Must be one of:
  • negotiable
  • competitive
  • hidden
  • fixed
latitude   string  optional    

Must match the regex /^[-]?(([0-8]?[0-9]).(\d+))|(90(.0+)?)$/. Must not be greater than 20 characters. Example: bngzmiyvdljnikhw

longitude   string  optional    

Must match the regex /^[-]?((((1[0-7][0-9])|([0-9]?[0-9])).(\d+))|180(.0+)?)$/. Must not be greater than 20 characters. Example: aykcmyuwpwlvqwrs

zip_code   string  optional    

Must not be greater than 20 characters. Example: itcpscqldzsnrwtu

number_of_positions   integer     

Number of open positions. Must not be greater than 10000. Example: 2

apply_url   string  optional    

Must be a valid URL. Must not be greater than 2048 characters. Example: http://raynor.org/molestias-fugit-deleniti-distinctio-eum-doloremque-id

external_apply_behavior   string  optional    

Example: new_tab

Must be one of:
  • disabled
  • new_tab
  • current_tab
unique_id   string  optional    

Example: architecto

company_id   string     

ID of the company posting the job. Example: 1

Must be one of:
custom_fields   object[]  optional    
name   string     

Must not be greater than 255 characters. Example: n

value   string     

Must not be greater than 255 characters. Example: g

PUT api/v1/account/jobs/{id}

Example request:
curl --request PUT \
    "https://jobcy.botble.com/api/v1/account/jobs/564" \
    --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\": \"draft\",
    \"salary_type\": \"fixed\",
    \"latitude\": \"bngzmiyvdljnikhw\",
    \"longitude\": \"aykcmyuwpwlvqwrs\",
    \"zip_code\": \"itcpscqldzsnrwtu\",
    \"number_of_positions\": 2,
    \"apply_url\": \"http:\\/\\/raynor.org\\/molestias-fugit-deleniti-distinctio-eum-doloremque-id\",
    \"external_apply_behavior\": \"\",
    \"unique_id\": \"architecto\",
    \"company_id\": 1,
    \"custom_fields\": [
        {
            \"name\": \"n\",
            \"value\": \"g\"
        }
    ]
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/jobs/564"
);

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": "draft",
    "salary_type": "fixed",
    "latitude": "bngzmiyvdljnikhw",
    "longitude": "aykcmyuwpwlvqwrs",
    "zip_code": "itcpscqldzsnrwtu",
    "number_of_positions": 2,
    "apply_url": "http:\/\/raynor.org\/molestias-fugit-deleniti-distinctio-eum-doloremque-id",
    "external_apply_behavior": "",
    "unique_id": "architecto",
    "company_id": 1,
    "custom_fields": [
        {
            "name": "n",
            "value": "g"
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/account/jobs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job. Example: 564

Body Parameters

name   string     

Job title. Must be at least 3 characters. Must not be greater than 120 characters. Example: Senior Software Engineer

description   string  optional    

Job description. Must not be greater than 400 characters. Example: We are looking for a senior software engineer...

content   string  optional    

Detailed job content. Must not be greater than 100000 characters. Example: Full job description with requirements...

status   string  optional    

Example: draft

Must be one of:
  • published
  • draft
  • pending
  • closed
salary_type   string  optional    

Type of salary (fixed, negotiable, competitive, hidden). Example: fixed

Must be one of:
  • negotiable
  • competitive
  • hidden
  • fixed
latitude   string  optional    

Must match the regex /^[-]?(([0-8]?[0-9]).(\d+))|(90(.0+)?)$/. Must not be greater than 20 characters. Example: bngzmiyvdljnikhw

longitude   string  optional    

Must match the regex /^[-]?((((1[0-7][0-9])|([0-9]?[0-9])).(\d+))|180(.0+)?)$/. Must not be greater than 20 characters. Example: aykcmyuwpwlvqwrs

zip_code   string  optional    

Must not be greater than 20 characters. Example: itcpscqldzsnrwtu

number_of_positions   integer     

Number of open positions. Must not be greater than 10000. Example: 2

apply_url   string  optional    

Must be a valid URL. Must not be greater than 2048 characters. Example: http://raynor.org/molestias-fugit-deleniti-distinctio-eum-doloremque-id

external_apply_behavior   string  optional    
Must be one of:
  • disabled
  • new_tab
  • current_tab
unique_id   string  optional    

Example: architecto

company_id   string     

ID of the company posting the job. Example: 1

Must be one of:
custom_fields   object[]  optional    
name   string     

Must not be greater than 255 characters. Example: n

value   string     

Must not be greater than 255 characters. Example: g

DELETE api/v1/account/jobs/{id}

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/account/jobs/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/jobs/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/account/jobs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job. Example: 564

GET api/v1/account/transactions

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/transactions" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/transactions

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/account/invoices

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/invoices" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/account/invoices

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/account/invoices/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/account/invoices/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/account/invoices/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/account/invoices/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the invoice. Example: 564

Ads

Get ads

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/ads?keys[]=homepage-banner&keys[]=sidebar-banner" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"keys\": [
        \"homepage-banner\",
        \"sidebar-banner\"
    ]
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/ads"
);

const params = {
    "keys[0]": "homepage-banner",
    "keys[1]": "sidebar-banner",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "keys": [
        "homepage-banner",
        "sidebar-banner"
    ]
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": false,
    "data": [],
    "message": null
}
 

Request      

GET api/v1/ads

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

keys   string[]  optional    

Array of ad keys to filter by.

Body Parameters

keys   string[]  optional    

Array of ad keys to filter by.

Authentication

Register

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/register" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"first_name\": \"John\",
    \"last_name\": \"Smith\",
    \"name\": \"architecto\",
    \"email\": \"[email protected]\",
    \"password\": \"|]|{+-\",
    \"phone\": \"architecto\",
    \"password_confirmation\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/register"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "first_name": "John",
    "last_name": "Smith",
    "name": "architecto",
    "email": "[email protected]",
    "password": "|]|{+-",
    "phone": "architecto",
    "password_confirmation": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": null,
    "message": "Registered successfully! We emailed you to verify your account!"
}
 

Example response (422):


{
    "message": "The given data was invalid.",
    "errors": {
        "name": [
            "The name field is required."
        ],
        "email": [
            "The email field is required."
        ],
        "password": [
            "The password field is required."
        ]
    }
}
 

Request      

POST api/v1/register

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

first_name   string  optional    

The first name of the user. This field is required when name is not present. Must not be greater than 120 characters. Must be at least 2 characters. Example: John

last_name   string  optional    

The last name of the user. This field is required when name is not present. Must not be greater than 120 characters. Must be at least 2 characters. Example: Smith

name   string     

The name of the user. Example: architecto

email   string     

The email of the user. Example: [email protected]

password   string     

The password of user to create. Example: |]|{+-

phone   string     

The phone of the user. Example: architecto

password_confirmation   string     

The password confirmation. Example: architecto

Login

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/login" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\",
    \"password\": \"|]|{+-\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/login"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]",
    "password": "|]|{+-"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "token": "1|aF5s7p3xxx1lVL8hkSrPN72m4wPVpTvTs..."
    },
    "message": null
}
 

Request      

POST api/v1/login

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email of the user. Example: [email protected]

password   string     

The password of user to create. Example: |]|{+-

Check email existing or not

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/email/check" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/email/check"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "exists": true
    },
    "message": null
}
 

Request      

POST api/v1/email/check

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email of the user. Example: [email protected]

Forgot password

Send a reset link to the given user.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/password/forgot" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/password/forgot"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/password/forgot

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email of the user. Example: [email protected]

Resend email verification

Resend the email verification notification.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/resend-verify-account-email" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/resend-verify-account-email"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/resend-verify-account-email

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email of the user. Example: [email protected]

Logout

requires authentication

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/logout" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/logout"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/logout

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Blog

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/search" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"q\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/search"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "q": "architecto"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "items": [
            {
                "id": 1,
                "title": "Sample Post",
                "slug": "sample-post",
                "excerpt": "This is a sample post excerpt"
            }
        ],
        "query": "sample",
        "count": 1
    }
}
 

Example response (400):


{
    "error": true,
    "message": "No search result"
}
 

List posts

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/posts?per_page=16&page=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/posts"
);

const params = {
    "per_page": "16",
    "page": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": [
        {
            "id": 1,
            "title": "Sample Post",
            "slug": "sample-post",
            "excerpt": "This is a sample post excerpt",
            "content": "Full post content here...",
            "published_at": "2023-01-01T00:00:00.000000Z",
            "author": {
                "id": 1,
                "name": "John Doe"
            },
            "categories": [],
            "tags": []
        }
    ],
    "message": null
}
 

Request      

GET api/v1/posts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items to return per page (default: 10). Example: 16

page   integer  optional    

The page number to retrieve (default: 1). Example: 16

Filters posts

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/posts/filters?page=16&per_page=16&search=architecto&after=architecto&author=architecto&author_exclude=architecto&before=architecto&exclude=architecto&include=architecto&order=architecto&order_by=architecto&categories=architecto&categories_exclude=architecto&tags=architecto&tags_exclude=architecto&featured=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/posts/filters"
);

const params = {
    "page": "16",
    "per_page": "16",
    "search": "architecto",
    "after": "architecto",
    "author": "architecto",
    "author_exclude": "architecto",
    "before": "architecto",
    "exclude": "architecto",
    "include": "architecto",
    "order": "architecto",
    "order_by": "architecto",
    "categories": "architecto",
    "categories_exclude": "architecto",
    "tags": "architecto",
    "tags_exclude": "architecto",
    "featured": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/posts/filters?page=1",
        "last": "https://jobcy.botble.com/api/v1/posts/filters?page=1",
        "prev": "https://jobcy.botble.com/api/v1/posts/filters?page=15",
        "next": null
    },
    "meta": {
        "current_page": 16,
        "from": null,
        "last_page": 1,
        "links": [
            {
                "url": "https://jobcy.botble.com/api/v1/posts/filters?page=15",
                "label": "&laquo; Previous",
                "page": 15,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/posts/filters?page=1",
                "label": "1",
                "page": 1,
                "active": false
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/posts/filters",
        "per_page": 16,
        "to": null,
        "total": 0
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/posts/filters

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

Current page of the collection. Default: 1 Example: 16

per_page   integer  optional    

Maximum number of items to be returned in result set.Default: 10 Example: 16

search   string  optional    

Limit results to those matching a string. Example: architecto

after   string  optional    

Limit response to posts published after a given ISO8601 compliant date. Example: architecto

author   string  optional    

Limit result set to posts assigned to specific authors. Example: architecto

author_exclude   string  optional    

Ensure result set excludes posts assigned to specific authors. Example: architecto

before   string  optional    

Limit response to posts published before a given ISO8601 compliant date. Example: architecto

exclude   string  optional    

Ensure result set excludes specific IDs. Example: architecto

include   string  optional    

Limit result set to specific IDs. Example: architecto

order   string  optional    

Order sort attribute ascending or descending. Default: desc .One of: asc, desc Example: architecto

order_by   string  optional    

Sort collection by object attribute. Default: updated_at. One of: author, created_at, updated_at, id, slug, title Example: architecto

categories   string  optional    

Limit result set to all items that have the specified term assigned in the categories taxonomy. Example: architecto

categories_exclude   string  optional    

Limit result set to all items except those that have the specified term assigned in the categories taxonomy. Example: architecto

tags   string  optional    

Limit result set to all items that have the specified term assigned in the tags taxonomy. Example: architecto

tags_exclude   string  optional    

Limit result set to all items except those that have the specified term assigned in the tags taxonomy. Example: architecto

featured   string  optional    

Limit result set to items that are sticky. Example: architecto

Get post by slug

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/posts/architecto?slug=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/posts/architecto"
);

const params = {
    "slug": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Not found"
}
 

Request      

GET api/v1/posts/{slug}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The slug of the post. Example: architecto

Query Parameters

slug   string  optional    

Find by slug of post. Example: architecto

Filters categories

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/categories/filters?page=16&per_page=16&search=architecto&order=architecto&order_by=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/categories/filters"
);

const params = {
    "page": "16",
    "per_page": "16",
    "search": "architecto",
    "order": "architecto",
    "order_by": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": [
        {
            "id": 1,
            "name": "Technology",
            "slug": "technology",
            "description": "Latest tech news and updates"
        }
    ],
    "message": null
}
 

Request      

GET api/v1/categories/filters

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

Current page of the collection (default: 1). Example: 16

per_page   integer  optional    

Maximum number of items to be returned (default: 10). Example: 16

search   string  optional    

Limit results to those matching a string. Example: architecto

order   string  optional    

Order sort attribute ascending or descending (default: desc). One of: asc, desc. Example: architecto

order_by   string  optional    

Sort collection by object attribute (default: created_at). One of: created_at, updated_at, id, name. Example: architecto

Get category by slug

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/categories/architecto?slug=architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/categories/architecto"
);

const params = {
    "slug": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Not found"
}
 

Request      

GET api/v1/categories/{slug}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The slug of the category. Example: architecto

Query Parameters

slug   string  optional    

Find by slug of category. Example: architecto

Companies

GET api/v1/companies

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/companies" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": "Ut et est veritatis repudiandae assumenda tempora possimus. Optio doloremque ex quia. Et repellat ea aut molestias.",
            "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": "836 Corene Underpass\nNew Lester, ID 92269-3603",
            "email": null,
            "phone": "+16366079095",
            "website": "https://www.adobe.com",
            "year_founded": 2013,
            "number_of_offices": 3,
            "number_of_employees": 4,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/adobe",
            "latitude": "42.789207",
            "longitude": "-75.554249",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 2,
            "created_at": "2025-06-08T16:23:08.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 5,
                "name": "Denmark",
                "code": "DN"
            },
            "state": {
                "id": 5,
                "name": "Denmark"
            },
            "city": {
                "id": 5,
                "name": "Copenhagen"
            }
        },
        {
            "id": 7,
            "name": "Apple",
            "description": "Et accusantium omnis aut et molestiae aut omnis. Minima qui et blanditiis aut inventore provident. Omnis enim aspernatur at ipsum nihil non voluptatibus nisi.",
            "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": "45623 Champlin Knolls Apt. 299\nNew Kaitlin, ID 49333",
            "email": null,
            "phone": "+14047365029",
            "website": "https://www.apple.com",
            "year_founded": 2002,
            "number_of_offices": 6,
            "number_of_employees": 6,
            "annual_revenue": "6M",
            "ceo": "Steve Jobs",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAGwABAAMAAwEAAAAAAAAAAAAAAAUGBwIDBAH/xABCEAEAAQMCAgQKBgYLAQAAAAAAAQIDBAURBjESIUGBBxMUIlFhcZGhwUJDYnKx0RUWMlJV8RcjJDNjgpOywuHi8P/EABsBAQACAwEBAAAAAAAAAAAAAAAFBgIDBAEH/8QALxEBAAICAQIEBAUEAwAAAAAAAAECAwQRBTEGEiFBUWFxgTKRocHRE0Kx8CIz8f/aAAwDAQACEQMRAD8A7wFnfKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHdi4t7NybePj25uXbk7U0x2kzx6y9iJtPEd3SmNO4X1bU4iqzizRan6y75tP5z3L3oHB+HpVFN7Kppyczn0qo3pon7MfP8FlRubqHE8Y4+6z6Xh2bRF9mePlH7yoON4Oa5iJytRppn921b3+MzH4PfT4PNMiPPy8ufZNMf8VvHHO3mn+5NU6NpUjjyc/XlTrng706Y/q8zKpn7XRn5QjMvwd5duJnEzbV77NymaJ+bRAruZo92OToulePwcfSZYpqGk5+l19HMxq7W/VFUxvTPsmOp4m63rNrItVWr1ui5bqjaqmuN4nuZ9xNwZ5JbrztMpqqsx13LHOaI9MemHfg3q3ny39JV/qHQb4Kzkwz5qx7e8fypYDvV8AAAAAAAAAAAAAAAAAAAAaXwNotOHp36Ru0/wBoyY8zf6NHZ7+fuZtaom7dotxzqqimO9udm1RYsW7NuNqLdMU0x6IiNkf1DJNaRSPdYvDutXJmtlt/b2+suYPBrOoRpWj5ObtEzbp82J7apnaPjMImsTaYiFwyXrjpN7do9X3UdYwNKoirNyaLczG8U86p9kR1oG54QdJoqmKLGXX64opiPjLOMnJvZmTXkZFyq5drneqqrtdSXp0/HEf8p5lTs/iLYtaf6UREfnLUMbj3Rr9cU3PKLHruUbx8JlY8fJsZdmm9j3aLtqrlVRO8SwxM8N65d0XUqKunPktyqKb1HZt6fbDDNoV8vOPu3aXiHJ54rsRHE+8ezXwjrjeBFLcyzjLQ6dJ1OL2PT0cXJ3qpiOVNXbHs7f5K01jjPDjL4ayKtt67Exdp7p2n4TLJ07p5ZyYvXvCgda1a6+1MV7W9QB1IkAAAAAAAAAAAAAAAAAB241yLWVauTyorpqnulucTExvHJg7XeFNUp1TQrMzVvesxFq7HbvHKe+Ov3o3qNJmsW+CzeGs1a3vinvPEx9v/AFNojifBu6jw7l2LMTVd2iummO3ozE7fBLiMpaa2i0ey15sUZcdsdu0xx+bB+U7DUdd4MxNVrryMarybKq65mI3orn1x2T64UTUeGtV0uZm/i1VW4+ttedT8OXfsncO1jyR6TxKgbnStnVmeY5r8Y/30RIDoRq+43hBsWcWzarwbtVVFFNM1dOOuYjm7f6Rsb+H3f9SGejlnSwz7JaOubsRxFv0hedQ48xs3TcrFjAu0zetVW4qmuOqZiY3UYG3Fhpijijj2t3NtWi2aeZgAbXKAAAAAAAAAAAAAAAAAAJTQdbv6FqEX7cdO1V5t23v+1H5+hFjG1YtHlnszxZb4rxek8TDbtP1HF1TEpycS7Fdurn6aZ9Ex2S9TE9N1TM0nJ8fh3pt1fSjnTVHomO1f9J47wcuKbeoU+S3uXS50T3847/eh8+lenrT1hddDrmHPEVzT5bfpP3/lbRwtXbd+3FyzcouW6uVVFW8T3ubiTkTE+sIzO4f0rUt5ycK3Nc/Tpjo1e+FV1LweTETXpuV0v8K/8qo/JfRvx7GTH+GXFs9N1dj8dI5+MeksRztOzNNveKzMeuzX2dKOqfZPKe55W45WHj52PVYyrNF21Vzpqjf+TOuJODrmmU15mD0ruJHXVRPXVb/OP/vWksG7XJPlt6SqvUOh5NeJyYp81f1j+VTAdyCAAAAAAAAAAAAAAAAAAAAB68LTM3UprjDxq700bdLo9m/L8Hs/VjW/4bf90MJyUieJlupr5rx5q0mY+kogS/6sa3/Db/uhH5eHkYF+bGVZqtXYiJ6NXPZ7F629Il5fBlxxzesxHziXPD1HM06508TJuWZ7ehV1T7Y5Ss+B4Qc2ztTnY9vIp/fo8yr8vhCnDDJhx5PxQ26+9sa//VeY/wAfl2a7pnFek6nMUUZHibs/V3vNnunlPvTbB1p4Y4rydOybWLmXZu4VUxTvXO82vXE+j1I/NocR5sc/ZY9HxD57RTZjjn3j94ae+TETExMbxPOJfRGrQyri/QqdH1KLtinbFyN6qIj6FXbT+X/SuNZ4yw4y+Gsidt67Exdp9W09fwmWTJ3Tyzkx+veFA6zqV1tqYp2t6wAOpEgAAAAAAAAAAAAAAAAALn4O78U6nmWJnruWoqj/ACz/AOmisZ0HUf0TrWNlzv0Katrm37s9U/n3NlpqproiumYqpqjeJjlMIbfpMZPN8V28PZ4vqzj96z+k+v8AL6zjwhYlVvVcfLiPMu2uhv8AapmflMNHeDV9Kx9Z0+vEyN4ieuiuOdFXZMNGtl/pZItPZIdT1J2ta2OvfvH1YsJvVOFdV0y5Vvj1X7McrtmOlG3rjnHehZiaZmJiYmOyU9S9bxzWeXz7LgyYbeXJWYn5vg5W7dd2uKLdFVdU8opjeVu4c4NysjJt5WpWps41ExV4quNqrnqmOyPaxyZa445tLPW1MuzeKY45/wAR9Wg4PT8gxvGb9PxVPS39O3W7wV2Z5l9MrHERCP13b9X9R35eTXP9ssXazxlmU4nDWRTvtXf2tUx6d56/hEsmS3TomMcz81N8SXiditY9o/cASCugAAAAAAAAAAAAAAAAAC98G8UUW7dGlZ9yKYjqsXap6vuz8vcog1ZsVctfLZ1ae5k1MsZMf3+cN4GX6HxpmaZTTj5UTlY0dUbz59Eeqe32SvWncSaTqcRFjLopuT9Xd82r48+7dC5dXJj7xzC86fVdbaj0txb4T/vqlnCu1buft26avvRu5jnSMxy40W6LcbUUU0x6o2cgHvYfKqqaKKq66opppjeZmdoiEVqXEmlaXTPj8qmq5H1VuelV7o5d+zPtf4sy9aibFuPJ8Tf+7ieuv70/J04dW+WfhCM3era+rWY55t8I/f4HFuvRrWoxRYmfJLG9Nv7U9tSvAm8dIpWK1ULYz3z5Jy37yAM2oAAAAAAAAAAAAAAAAAAAAAB7MbVtRw4iMfOyLVMfRpuTt7uSQo4v16iNo1CqfvW6J/GEGMJxUt3iG+m1nxxxS8x9JlN18X69XG06hV3W6I/CHhydX1LMiYyM7IuUz9Gq5O3u5PEEYqV7RBfaz3ji95n6zIAzaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH//2Q==",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/7.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/7.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/apple",
            "latitude": "43.044906",
            "longitude": "-75.802498",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 1,
            "created_at": "2025-06-03T19:27:46.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 6,
            "name": "Behance",
            "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
            "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
            "email": null,
            "phone": "+14428747586",
            "website": "https://www.behance.net",
            "year_founded": 1978,
            "number_of_offices": 1,
            "number_of_employees": 3,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/behance",
            "latitude": "43.221101",
            "longitude": "-76.469064",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 4,
            "created_at": "2025-03-23T19:14:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 12,
            "name": "Envato",
            "description": "Et earum doloremque ea vel. Voluptas similique ut et qui id labore cupiditate. Neque soluta soluta doloremque voluptates. Fugit hic pariatur est quos.",
            "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": "35874 Watsica Ferry\nEast Beryl, MD 51914",
            "email": null,
            "phone": "+12488448592",
            "website": "https://envato.com",
            "year_founded": 1980,
            "number_of_offices": 5,
            "number_of_employees": 9,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/envato",
            "latitude": "43.498866",
            "longitude": "-74.958471",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 3,
            "created_at": "2024-11-08T06:39:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 5,
            "name": "Flutter",
            "description": "Officia necessitatibus reprehenderit inventore quasi. Qui accusantium est incidunt nisi tempore. Aut veniam soluta ut 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": "46359 Gutmann Via\nNorth Fredyborough, AZ 05248",
            "email": null,
            "phone": "+17063977820",
            "website": "https://flutter.io",
            "year_founded": 1983,
            "number_of_offices": 8,
            "number_of_employees": 9,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/flutter",
            "latitude": "42.517019",
            "longitude": "-75.323091",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 2,
            "created_at": "2025-07-14T10:19:18.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 14,
            "name": "Generic",
            "description": "Dignissimos cumque tempore esse repellendus. Nulla et ex qui incidunt a voluptatem autem. Recusandae et in illo alias cumque. Ea repellat occaecati omnis autem.",
            "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": "380 Liam Locks\nMatteoborough, MS 45712",
            "email": null,
            "phone": "+17349913875",
            "website": "https://generic.com",
            "year_founded": 2014,
            "number_of_offices": 6,
            "number_of_employees": 5,
            "annual_revenue": "4M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/14.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/14.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/generic",
            "latitude": "43.467656",
            "longitude": "-75.694316",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 3,
            "created_at": "2025-08-28T07:46:19.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 3,
            "name": "Line",
            "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
            "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
            "email": null,
            "phone": "+17258389816",
            "website": "https://line.me",
            "year_founded": 2016,
            "number_of_offices": 2,
            "number_of_employees": 7,
            "annual_revenue": "1M",
            "ceo": "Nakamura",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/line",
            "latitude": "42.492485",
            "longitude": "-76.161314",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 3,
            "created_at": "2024-10-14T03:07:52.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 1,
                "name": "France",
                "code": "FRA"
            },
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            }
        },
        {
            "id": 2,
            "name": "Linkedin",
            "description": "Tenetur quam id quo consequatur officia aut. Sit ex quia non ducimus sequi iusto dolorum. Asperiores in in voluptatem tenetur. Iste maiores amet sit in velit qui id.",
            "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": "1162 Julia Island\nLake Ilaton, NH 47057-4091",
            "email": null,
            "phone": "+15859306553",
            "website": "https://www.linkedin.com",
            "year_founded": 1997,
            "number_of_offices": 3,
            "number_of_employees": 7,
            "annual_revenue": "10M",
            "ceo": "Jeff Weiner",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/linkedin",
            "latitude": "42.966862",
            "longitude": "-75.472699",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 5,
            "created_at": "2025-01-14T06:55:04.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 13,
            "name": "Magento",
            "description": "Voluptatem officiis rerum aut repellat. Sed libero et autem soluta. Dolor incidunt eum cumque adipisci eveniet ratione. Nisi reiciendis laboriosam voluptate vitae aut in recusandae aut.",
            "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": "570 Kamren Inlet\nBernhardmouth, KS 89793",
            "email": null,
            "phone": "+15393873698",
            "website": "https://magento.com",
            "year_founded": 1985,
            "number_of_offices": 1,
            "number_of_employees": 5,
            "annual_revenue": "7M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/13.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/13.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/magento",
            "latitude": "42.894425",
            "longitude": "-76.506947",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 3,
            "created_at": "2024-10-24T03:35:12.000000Z",
            "updated_at": "2025-10-01T03:01:36.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": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
            "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": "36501 Kris Village\nPort Luna, MD 67602",
            "email": null,
            "phone": "+15419156738",
            "website": "https://www.pinterest.com",
            "year_founded": 1980,
            "number_of_offices": 1,
            "number_of_employees": 9,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/pinterest",
            "latitude": "43.451068",
            "longitude": "-75.902191",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 1,
            "created_at": "2025-08-09T10:13:58.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 15,
            "name": "Reveal",
            "description": "Eaque sequi enim animi autem eos. Pariatur debitis qui ad saepe. Culpa in qui ducimus ex id rerum. Non in non debitis sit labore non et molestiae.",
            "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": "30872 Bradtke Crossroad\nNorth Roel, MO 92755-6041",
            "email": null,
            "phone": "+15304689256",
            "website": "https://reveal.com",
            "year_founded": 1983,
            "number_of_offices": 5,
            "number_of_employees": 2,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/15.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/15.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/reveal",
            "latitude": "43.771894",
            "longitude": "-76.40518",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 0,
            "created_at": "2025-08-22T23:00:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 4,
                "name": "Holland",
                "code": "HL"
            },
            "state": {
                "id": 4,
                "name": "Holland"
            },
            "city": {
                "id": 4,
                "name": "New York"
            }
        },
        {
            "id": 4,
            "name": "Uber",
            "description": "Possimus perspiciatis et quidem non. Fuga facere natus exercitationem voluptatibus. In non velit harum repudiandae occaecati iure dolorem. Ullam ut sapiente sapiente in tempora.",
            "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": "2273 Nasir Rest Suite 140\nAlisastad, IL 41934",
            "email": null,
            "phone": "+13602333544",
            "website": "https://www.uber.com",
            "year_founded": 1996,
            "number_of_offices": 6,
            "number_of_employees": 7,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAGwABAAMAAwEAAAAAAAAAAAAAAAUGBwIDBAH/xABCEAEAAQMCAgQKBgYLAQAAAAAAAQIDBAURBjESIUGBBxMUIlFhcZGhwUJDYnKx0RUWMlJV8RcjJDNjgpOywuHi8P/EABsBAQACAwEBAAAAAAAAAAAAAAAFBgIDBAEH/8QALxEBAAICAQIEBAUEAwAAAAAAAAECAwQRBTEGEiFBUWFxgTKRocHRE0Kx8CIz8f/aAAwDAQACEQMRAD8A7wFnfKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHdi4t7NybePj25uXbk7U0x2kzx6y9iJtPEd3SmNO4X1bU4iqzizRan6y75tP5z3L3oHB+HpVFN7Kppyczn0qo3pon7MfP8FlRubqHE8Y4+6z6Xh2bRF9mePlH7yoON4Oa5iJytRppn921b3+MzH4PfT4PNMiPPy8ufZNMf8VvHHO3mn+5NU6NpUjjyc/XlTrng706Y/q8zKpn7XRn5QjMvwd5duJnEzbV77NymaJ+bRAruZo92OToulePwcfSZYpqGk5+l19HMxq7W/VFUxvTPsmOp4m63rNrItVWr1ui5bqjaqmuN4nuZ9xNwZ5JbrztMpqqsx13LHOaI9MemHfg3q3ny39JV/qHQb4Kzkwz5qx7e8fypYDvV8AAAAAAAAAAAAAAAAAAAAaXwNotOHp36Ru0/wBoyY8zf6NHZ7+fuZtaom7dotxzqqimO9udm1RYsW7NuNqLdMU0x6IiNkf1DJNaRSPdYvDutXJmtlt/b2+suYPBrOoRpWj5ObtEzbp82J7apnaPjMImsTaYiFwyXrjpN7do9X3UdYwNKoirNyaLczG8U86p9kR1oG54QdJoqmKLGXX64opiPjLOMnJvZmTXkZFyq5drneqqrtdSXp0/HEf8p5lTs/iLYtaf6UREfnLUMbj3Rr9cU3PKLHruUbx8JlY8fJsZdmm9j3aLtqrlVRO8SwxM8N65d0XUqKunPktyqKb1HZt6fbDDNoV8vOPu3aXiHJ54rsRHE+8ezXwjrjeBFLcyzjLQ6dJ1OL2PT0cXJ3qpiOVNXbHs7f5K01jjPDjL4ayKtt67Exdp7p2n4TLJ07p5ZyYvXvCgda1a6+1MV7W9QB1IkAAAAAAAAAAAAAAAAAB241yLWVauTyorpqnulucTExvHJg7XeFNUp1TQrMzVvesxFq7HbvHKe+Ov3o3qNJmsW+CzeGs1a3vinvPEx9v/AFNojifBu6jw7l2LMTVd2iummO3ozE7fBLiMpaa2i0ey15sUZcdsdu0xx+bB+U7DUdd4MxNVrryMarybKq65mI3orn1x2T64UTUeGtV0uZm/i1VW4+ttedT8OXfsncO1jyR6TxKgbnStnVmeY5r8Y/30RIDoRq+43hBsWcWzarwbtVVFFNM1dOOuYjm7f6Rsb+H3f9SGejlnSwz7JaOubsRxFv0hedQ48xs3TcrFjAu0zetVW4qmuOqZiY3UYG3Fhpijijj2t3NtWi2aeZgAbXKAAAAAAAAAAAAAAAAAAJTQdbv6FqEX7cdO1V5t23v+1H5+hFjG1YtHlnszxZb4rxek8TDbtP1HF1TEpycS7Fdurn6aZ9Ex2S9TE9N1TM0nJ8fh3pt1fSjnTVHomO1f9J47wcuKbeoU+S3uXS50T3847/eh8+lenrT1hddDrmHPEVzT5bfpP3/lbRwtXbd+3FyzcouW6uVVFW8T3ubiTkTE+sIzO4f0rUt5ycK3Nc/Tpjo1e+FV1LweTETXpuV0v8K/8qo/JfRvx7GTH+GXFs9N1dj8dI5+MeksRztOzNNveKzMeuzX2dKOqfZPKe55W45WHj52PVYyrNF21Vzpqjf+TOuJODrmmU15mD0ruJHXVRPXVb/OP/vWksG7XJPlt6SqvUOh5NeJyYp81f1j+VTAdyCAAAAAAAAAAAAAAAAAAAAB68LTM3UprjDxq700bdLo9m/L8Hs/VjW/4bf90MJyUieJlupr5rx5q0mY+kogS/6sa3/Db/uhH5eHkYF+bGVZqtXYiJ6NXPZ7F629Il5fBlxxzesxHziXPD1HM06508TJuWZ7ehV1T7Y5Ss+B4Qc2ztTnY9vIp/fo8yr8vhCnDDJhx5PxQ26+9sa//VeY/wAfl2a7pnFek6nMUUZHibs/V3vNnunlPvTbB1p4Y4rydOybWLmXZu4VUxTvXO82vXE+j1I/NocR5sc/ZY9HxD57RTZjjn3j94ae+TETExMbxPOJfRGrQyri/QqdH1KLtinbFyN6qIj6FXbT+X/SuNZ4yw4y+Gsidt67Exdp9W09fwmWTJ3Tyzkx+veFA6zqV1tqYp2t6wAOpEgAAAAAAAAAAAAAAAAALn4O78U6nmWJnruWoqj/ACz/AOmisZ0HUf0TrWNlzv0Katrm37s9U/n3NlpqproiumYqpqjeJjlMIbfpMZPN8V28PZ4vqzj96z+k+v8AL6zjwhYlVvVcfLiPMu2uhv8AapmflMNHeDV9Kx9Z0+vEyN4ieuiuOdFXZMNGtl/pZItPZIdT1J2ta2OvfvH1YsJvVOFdV0y5Vvj1X7McrtmOlG3rjnHehZiaZmJiYmOyU9S9bxzWeXz7LgyYbeXJWYn5vg5W7dd2uKLdFVdU8opjeVu4c4NysjJt5WpWps41ExV4quNqrnqmOyPaxyZa445tLPW1MuzeKY45/wAR9Wg4PT8gxvGb9PxVPS39O3W7wV2Z5l9MrHERCP13b9X9R35eTXP9ssXazxlmU4nDWRTvtXf2tUx6d56/hEsmS3TomMcz81N8SXiditY9o/cASCugAAAAAAAAAAAAAAAAAC98G8UUW7dGlZ9yKYjqsXap6vuz8vcog1ZsVctfLZ1ae5k1MsZMf3+cN4GX6HxpmaZTTj5UTlY0dUbz59Eeqe32SvWncSaTqcRFjLopuT9Xd82r48+7dC5dXJj7xzC86fVdbaj0txb4T/vqlnCu1buft26avvRu5jnSMxy40W6LcbUUU0x6o2cgHvYfKqqaKKq66opppjeZmdoiEVqXEmlaXTPj8qmq5H1VuelV7o5d+zPtf4sy9aibFuPJ8Tf+7ieuv70/J04dW+WfhCM3era+rWY55t8I/f4HFuvRrWoxRYmfJLG9Nv7U9tSvAm8dIpWK1ULYz3z5Jy37yAM2oAAAAAAAAAAAAAAAAAAAAAB7MbVtRw4iMfOyLVMfRpuTt7uSQo4v16iNo1CqfvW6J/GEGMJxUt3iG+m1nxxxS8x9JlN18X69XG06hV3W6I/CHhydX1LMiYyM7IuUz9Gq5O3u5PEEYqV7RBfaz3ji95n6zIAzaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH//2Q==",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/uber",
            "latitude": "43.450592",
            "longitude": "-76.37442",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 1,
            "created_at": "2024-10-15T10:38:13.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 3,
                "name": "USA",
                "code": "US"
            },
            "state": {
                "id": 3,
                "name": "New York"
            },
            "city": {
                "id": 3,
                "name": "New York"
            }
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/companies?page=1",
        "last": "https://jobcy.botble.com/api/v1/companies?page=2",
        "prev": null,
        "next": "https://jobcy.botble.com/api/v1/companies?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 2,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/companies?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://jobcy.botble.com/api/v1/companies?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/companies?page=2",
                "label": "Next &raquo;",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/companies",
        "per_page": 12,
        "to": 12,
        "total": 16
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/companies

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/companies/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/companies/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/companies/564"
);

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"
}
 

Request      

GET api/v1/companies/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the company. Example: 564

GET api/v1/companies/{id}/jobs

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/companies/564/jobs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/companies/564/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"
}
 

Request      

GET api/v1/companies/{id}/jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the company. Example: 564

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/companies/featured" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 14,
            "name": "Generic",
            "description": "Dignissimos cumque tempore esse repellendus. Nulla et ex qui incidunt a voluptatem autem. Recusandae et in illo alias cumque. Ea repellat occaecati omnis autem.",
            "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": "380 Liam Locks\nMatteoborough, MS 45712",
            "email": null,
            "phone": "+17349913875",
            "website": "https://generic.com",
            "year_founded": 2014,
            "number_of_offices": 6,
            "number_of_employees": 5,
            "annual_revenue": "4M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/14.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/14.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/generic",
            "latitude": "43.467656",
            "longitude": "-75.694316",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 3,
            "created_at": "2025-08-28T07:46:19.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 15,
            "name": "Reveal",
            "description": "Eaque sequi enim animi autem eos. Pariatur debitis qui ad saepe. Culpa in qui ducimus ex id rerum. Non in non debitis sit labore non et molestiae.",
            "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": "30872 Bradtke Crossroad\nNorth Roel, MO 92755-6041",
            "email": null,
            "phone": "+15304689256",
            "website": "https://reveal.com",
            "year_founded": 1983,
            "number_of_offices": 5,
            "number_of_employees": 2,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/15.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/15.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/reveal",
            "latitude": "43.771894",
            "longitude": "-76.40518",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 0,
            "created_at": "2025-08-22T23:00:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 4,
                "name": "Holland",
                "code": "HL"
            },
            "state": {
                "id": 4,
                "name": "Holland"
            },
            "city": {
                "id": 4,
                "name": "New York"
            }
        },
        {
            "id": 1,
            "name": "Pinterest",
            "description": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
            "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": "36501 Kris Village\nPort Luna, MD 67602",
            "email": null,
            "phone": "+15419156738",
            "website": "https://www.pinterest.com",
            "year_founded": 1980,
            "number_of_offices": 1,
            "number_of_employees": 9,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/pinterest",
            "latitude": "43.451068",
            "longitude": "-75.902191",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 1,
            "created_at": "2025-08-09T10:13:58.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 5,
            "name": "Flutter",
            "description": "Officia necessitatibus reprehenderit inventore quasi. Qui accusantium est incidunt nisi tempore. Aut veniam soluta ut 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": "46359 Gutmann Via\nNorth Fredyborough, AZ 05248",
            "email": null,
            "phone": "+17063977820",
            "website": "https://flutter.io",
            "year_founded": 1983,
            "number_of_offices": 8,
            "number_of_employees": 9,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/flutter",
            "latitude": "42.517019",
            "longitude": "-75.323091",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 2,
            "created_at": "2025-07-14T10:19:18.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        },
        {
            "id": 11,
            "name": "WordPress",
            "description": "Dolores soluta aut tenetur soluta nobis aut a. Harum et rerum voluptas consequatur. Ut deserunt earum earum optio.",
            "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": "141 Nona Port Apt. 263\nCiarahaven, DE 60104",
            "email": null,
            "phone": "+18206658912",
            "website": "https://wordpress.org",
            "year_founded": 2014,
            "number_of_offices": 9,
            "number_of_employees": 4,
            "annual_revenue": "5M",
            "ceo": "Matt Mullenweg",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/wordpress",
            "latitude": "42.755309",
            "longitude": "-76.382025",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 4,
            "created_at": "2025-06-30T03:47:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 8,
            "name": "Adobe",
            "description": "Ut et est veritatis repudiandae assumenda tempora possimus. Optio doloremque ex quia. Et repellat ea aut molestias.",
            "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": "836 Corene Underpass\nNew Lester, ID 92269-3603",
            "email": null,
            "phone": "+16366079095",
            "website": "https://www.adobe.com",
            "year_founded": 2013,
            "number_of_offices": 3,
            "number_of_employees": 4,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/adobe",
            "latitude": "42.789207",
            "longitude": "-75.554249",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 2,
            "created_at": "2025-06-08T16:23:08.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 5,
                "name": "Denmark",
                "code": "DN"
            },
            "state": {
                "id": 5,
                "name": "Denmark"
            },
            "city": {
                "id": 5,
                "name": "Copenhagen"
            }
        },
        {
            "id": 7,
            "name": "Apple",
            "description": "Et accusantium omnis aut et molestiae aut omnis. Minima qui et blanditiis aut inventore provident. Omnis enim aspernatur at ipsum nihil non voluptatibus nisi.",
            "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": "45623 Champlin Knolls Apt. 299\nNew Kaitlin, ID 49333",
            "email": null,
            "phone": "+14047365029",
            "website": "https://www.apple.com",
            "year_founded": 2002,
            "number_of_offices": 6,
            "number_of_employees": 6,
            "annual_revenue": "6M",
            "ceo": "Steve Jobs",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/7.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/7.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/apple",
            "latitude": "43.044906",
            "longitude": "-75.802498",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 1,
            "created_at": "2025-06-03T19:27:46.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 10,
            "name": "VKontakte",
            "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
            "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
            "email": null,
            "phone": "+16697002110",
            "website": "https://vk.com",
            "year_founded": 2021,
            "number_of_offices": 4,
            "number_of_employees": 2,
            "annual_revenue": "9M",
            "ceo": "Vasya Pupkin",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/vkontakte",
            "latitude": "43.193521",
            "longitude": "-75.875674",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 4,
            "created_at": "2025-04-11T05:03:41.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 6,
            "name": "Behance",
            "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
            "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
            "email": null,
            "phone": "+14428747586",
            "website": "https://www.behance.net",
            "year_founded": 1978,
            "number_of_offices": 1,
            "number_of_employees": 3,
            "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": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/behance",
            "latitude": "43.221101",
            "longitude": "-76.469064",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 4,
            "created_at": "2025-03-23T19:14:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 6,
                "name": "Germany",
                "code": "DN"
            },
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            }
        },
        {
            "id": 2,
            "name": "Linkedin",
            "description": "Tenetur quam id quo consequatur officia aut. Sit ex quia non ducimus sequi iusto dolorum. Asperiores in in voluptatem tenetur. Iste maiores amet sit in velit qui id.",
            "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": "1162 Julia Island\nLake Ilaton, NH 47057-4091",
            "email": null,
            "phone": "+15859306553",
            "website": "https://www.linkedin.com",
            "year_founded": 1997,
            "number_of_offices": 3,
            "number_of_employees": 7,
            "annual_revenue": "10M",
            "ceo": "Jeff Weiner",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "accounts": [
                {
                    "id": 1,
                    "name": "Deonte Ferry",
                    "first_name": "Deonte",
                    "last_name": "Ferry",
                    "email": "[email protected]",
                    "phone": "+13808129048",
                    "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                    "dob": "2007-11-21T00:00:00.000000Z",
                    "gender": null,
                    "description": "Software Developer",
                    "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                    "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                    "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-11-16T00:42:30.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                },
                {
                    "id": 4,
                    "name": "Steven Jobs",
                    "first_name": "Steven",
                    "last_name": "Jobs",
                    "email": "[email protected]",
                    "phone": "+14303369636",
                    "avatar": "data:image/jpeg;base64,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",
                    "dob": "2004-07-19T00:00:00.000000Z",
                    "gender": null,
                    "description": "Creative Designer",
                    "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                    "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                    "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-04-02T13:57:56.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/linkedin",
            "latitude": "42.966862",
            "longitude": "-75.472699",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "active_jobs_count": 5,
            "created_at": "2025-01-14T06:55:04.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "country": {
                "id": 2,
                "name": "England",
                "code": "UK"
            },
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            }
        }
    ],
    "error": false,
    "message": null
}
 

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/companies/search" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": "Ut et est veritatis repudiandae assumenda tempora possimus. Optio doloremque ex quia. Et repellat ea aut molestias.",
            "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": "836 Corene Underpass\nNew Lester, ID 92269-3603",
            "email": null,
            "phone": "+16366079095",
            "website": "https://www.adobe.com",
            "year_founded": 2013,
            "number_of_offices": 3,
            "number_of_employees": 4,
            "annual_revenue": "8M",
            "ceo": "John Doe",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/adobe",
            "latitude": "42.789207",
            "longitude": "-75.554249",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-06-08T16:23:08.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 7,
            "name": "Apple",
            "description": "Et accusantium omnis aut et molestiae aut omnis. Minima qui et blanditiis aut inventore provident. Omnis enim aspernatur at ipsum nihil non voluptatibus nisi.",
            "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": "45623 Champlin Knolls Apt. 299\nNew Kaitlin, ID 49333",
            "email": null,
            "phone": "+14047365029",
            "website": "https://www.apple.com",
            "year_founded": 2002,
            "number_of_offices": 6,
            "number_of_employees": 6,
            "annual_revenue": "6M",
            "ceo": "Steve Jobs",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/7.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/7.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/apple",
            "latitude": "43.044906",
            "longitude": "-75.802498",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-06-03T19:27:46.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 6,
            "name": "Behance",
            "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
            "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
            "email": null,
            "phone": "+14428747586",
            "website": "https://www.behance.net",
            "year_founded": 1978,
            "number_of_offices": 1,
            "number_of_employees": 3,
            "annual_revenue": "10M",
            "ceo": "John Doe",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/behance",
            "latitude": "43.221101",
            "longitude": "-76.469064",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-03-23T19:14:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 12,
            "name": "Envato",
            "description": "Et earum doloremque ea vel. Voluptas similique ut et qui id labore cupiditate. Neque soluta soluta doloremque voluptates. Fugit hic pariatur est quos.",
            "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": "35874 Watsica Ferry\nEast Beryl, MD 51914",
            "email": null,
            "phone": "+12488448592",
            "website": "https://envato.com",
            "year_founded": 1980,
            "number_of_offices": 5,
            "number_of_employees": 9,
            "annual_revenue": "2M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/envato",
            "latitude": "43.498866",
            "longitude": "-74.958471",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2024-11-08T06:39:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 5,
            "name": "Flutter",
            "description": "Officia necessitatibus reprehenderit inventore quasi. Qui accusantium est incidunt nisi tempore. Aut veniam soluta ut 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": "46359 Gutmann Via\nNorth Fredyborough, AZ 05248",
            "email": null,
            "phone": "+17063977820",
            "website": "https://flutter.io",
            "year_founded": 1983,
            "number_of_offices": 8,
            "number_of_employees": 9,
            "annual_revenue": "4M",
            "ceo": "John Doe",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/flutter",
            "latitude": "42.517019",
            "longitude": "-75.323091",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-07-14T10:19:18.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 14,
            "name": "Generic",
            "description": "Dignissimos cumque tempore esse repellendus. Nulla et ex qui incidunt a voluptatem autem. Recusandae et in illo alias cumque. Ea repellat occaecati omnis autem.",
            "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": "380 Liam Locks\nMatteoborough, MS 45712",
            "email": null,
            "phone": "+17349913875",
            "website": "https://generic.com",
            "year_founded": 2014,
            "number_of_offices": 6,
            "number_of_employees": 5,
            "annual_revenue": "4M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/14.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/14.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/generic",
            "latitude": "43.467656",
            "longitude": "-75.694316",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-08-28T07:46:19.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 3,
            "name": "Line",
            "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
            "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
            "email": null,
            "phone": "+17258389816",
            "website": "https://line.me",
            "year_founded": 2016,
            "number_of_offices": 2,
            "number_of_employees": 7,
            "annual_revenue": "1M",
            "ceo": "Nakamura",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/line",
            "latitude": "42.492485",
            "longitude": "-76.161314",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2024-10-14T03:07:52.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 2,
            "name": "Linkedin",
            "description": "Tenetur quam id quo consequatur officia aut. Sit ex quia non ducimus sequi iusto dolorum. Asperiores in in voluptatem tenetur. Iste maiores amet sit in velit qui id.",
            "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": "1162 Julia Island\nLake Ilaton, NH 47057-4091",
            "email": null,
            "phone": "+15859306553",
            "website": "https://www.linkedin.com",
            "year_founded": 1997,
            "number_of_offices": 3,
            "number_of_employees": 7,
            "annual_revenue": "10M",
            "ceo": "Jeff Weiner",
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/linkedin",
            "latitude": "42.966862",
            "longitude": "-75.472699",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-01-14T06:55:04.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 13,
            "name": "Magento",
            "description": "Voluptatem officiis rerum aut repellat. Sed libero et autem soluta. Dolor incidunt eum cumque adipisci eveniet ratione. Nisi reiciendis laboriosam voluptate vitae aut in recusandae aut.",
            "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": "570 Kamren Inlet\nBernhardmouth, KS 89793",
            "email": null,
            "phone": "+15393873698",
            "website": "https://magento.com",
            "year_founded": 1985,
            "number_of_offices": 1,
            "number_of_employees": 5,
            "annual_revenue": "7M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/13.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/13.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/magento",
            "latitude": "42.894425",
            "longitude": "-76.506947",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2024-10-24T03:35:12.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 1,
            "name": "Pinterest",
            "description": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
            "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": "36501 Kris Village\nPort Luna, MD 67602",
            "email": null,
            "phone": "+15419156738",
            "website": "https://www.pinterest.com",
            "year_founded": 1980,
            "number_of_offices": 1,
            "number_of_employees": 9,
            "annual_revenue": "8M",
            "ceo": null,
            "is_featured": 1,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "postal_code": null,
            "tax_id": null,
            "unique_id": null,
            "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
            "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
            "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
            "url": "https://jobcy.botble.com/companies/pinterest",
            "latitude": "43.451068",
            "longitude": "-75.902191",
            "facebook": null,
            "twitter": null,
            "linkedin": null,
            "instagram": null,
            "created_at": "2025-08-09T10:13:58.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        }
    ],
    "error": false,
    "message": null
}
 

Device Tokens

Register or update device token

Register a new device token or update an existing one for push notifications.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/device-tokens" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"architecto\",
    \"platform\": \"architecto\",
    \"app_version\": \"architecto\",
    \"device_id\": \"architecto\",
    \"user_type\": \"architecto\",
    \"user_id\": 16
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/device-tokens"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "token": "architecto",
    "platform": "architecto",
    "app_version": "architecto",
    "device_id": "architecto",
    "user_type": "architecto",
    "user_id": 16
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/device-tokens

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string     

The FCM device token. Example: architecto

platform   string  optional    

The device platform (android, ios). Example: architecto

app_version   string  optional    

The app version. Example: architecto

device_id   string  optional    

The unique device identifier. Example: architecto

user_type   string  optional    

The user type (customer, admin). Example: architecto

user_id   integer  optional    

The user ID. Example: 16

Get user's device tokens

Retrieve all device tokens for the authenticated user.

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/device-tokens" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/device-tokens"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/device-tokens

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Update device token

Update an existing device token.

Example request:
curl --request PUT \
    "https://jobcy.botble.com/api/v1/device-tokens/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"platform\": \"architecto\",
    \"app_version\": \"architecto\",
    \"device_id\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/device-tokens/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "platform": "architecto",
    "app_version": "architecto",
    "device_id": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/device-tokens/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the device token. Example: 564

Body Parameters

platform   string  optional    

The device platform (android, ios). Example: architecto

app_version   string  optional    

The app version. Example: architecto

device_id   string  optional    

The unique device identifier. Example: architecto

Delete device token by token value

Delete a device token using the token value.

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/device-tokens/by-token" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/device-tokens/by-token"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "token": "architecto"
};

fetch(url, {
    method: "DELETE",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

DELETE api/v1/device-tokens/by-token

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string     

The FCM device token to delete. Example: architecto

Delete device token

Delete a device token to stop receiving push notifications.

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/device-tokens/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/device-tokens/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/device-tokens/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the device token. Example: 564

Deactivate device token

Deactivate a device token without deleting it.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/device-tokens/564/deactivate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/device-tokens/564/deactivate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/device-tokens/{id}/deactivate

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the device token. Example: 564

Endpoints

GET api/v1/categories

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/categories" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": "https://jobcy.botble.com/job-categories/it-software",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 0,
            "active_jobs_count": 42,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 2,
            "name": "Technology",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/technology",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 1,
            "active_jobs_count": 9,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 3,
            "name": "Government",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/government",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 2,
            "active_jobs_count": 9,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 4,
            "name": "Accounting / Finance",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/accounting-finance",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 3,
            "active_jobs_count": 11,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 5,
            "name": "Construction / Facilities",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/construction-facilities",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 4,
            "active_jobs_count": 13,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 6,
            "name": "Tele-communications",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/tele-communications",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 5,
            "active_jobs_count": 7,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 7,
            "name": "Design & Multimedia",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/design-multimedia",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 6,
            "active_jobs_count": 8,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 8,
            "name": "Human Resource",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/human-resource",
            "icon": null,
            "icon_image": null,
            "is_featured": 1,
            "order": 7,
            "active_jobs_count": 10,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 9,
            "name": "Consumer Packaged Goods (CPG)",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/consumer-packaged-goods-cpg",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 8,
            "active_jobs_count": 6,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 10,
            "name": "Manufacturing",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/manufacturing",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 9,
            "active_jobs_count": 11,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 11,
            "name": "Retail",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/retail",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 10,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 12,
            "name": "Distribution/Logistics",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/distributionlogistics",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 11,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 13,
            "name": "Supply Chain Operations",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/supply-chain-operations",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 12,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 14,
            "name": "Healthcare & Medical",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/healthcare-medical",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 13,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 15,
            "name": "Procurement / Sourcing",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/procurement-sourcing",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 14,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 16,
            "name": "Information Technology (IT)",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/information-technology-it",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 15,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 17,
            "name": "Sales/Business Development",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/salesbusiness-development",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 16,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 18,
            "name": "Legal & Professional Services",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/legal-professional-services",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 17,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 19,
            "name": "Life Sciences & Healthcare",
            "description": null,
            "url": "https://jobcy.botble.com/job-categories/life-sciences-healthcare",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "order": 18,
            "active_jobs_count": 0,
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/categories?page=1",
        "last": "https://jobcy.botble.com/api/v1/categories?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/categories?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/categories",
        "per_page": 20,
        "to": 19,
        "total": 19
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/categories

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/tags

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/tags" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/tags"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 2,
            "name": "Adobe XD",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/adobe-xd",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 3,
            "name": "Figma",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/figma",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 1,
            "name": "Illustrator",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/illustrator",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 8,
            "name": "JavaScript",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/javascript",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 5,
            "name": "Lunacy",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/lunacy",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 6,
            "name": "PHP",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/php",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 7,
            "name": "Python",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/python",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        },
        {
            "id": 4,
            "name": "Sketch",
            "description": "",
            "url": "https://jobcy.botble.com/job-tags/sketch",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:36.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/tags?page=1",
        "last": "https://jobcy.botble.com/api/v1/tags?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/tags?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/tags",
        "per_page": 50,
        "to": 8,
        "total": 8
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/tags

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/categories/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/categories/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/categories/564"
);

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"
}
 

Request      

GET api/v1/categories/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the category. Example: 564

GET api/v1/categories/{id}/jobs

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/categories/564/jobs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/categories/564/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"
}
 

Request      

GET api/v1/categories/{id}/jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the category. Example: 564

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/categories/featured" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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"
}
 

GET api/v1/job-types

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-types" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 2,
            "name": "Freelance",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 3,
            "name": "Full Time",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 4,
            "name": "Internship",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 5,
            "name": "Part Time",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/job-types?page=1",
        "last": "https://jobcy.botble.com/api/v1/job-types?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/job-types?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/job-types",
        "per_page": 20,
        "to": 5,
        "total": 5
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/job-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/job-types/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-types/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-types/564"
);

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"
}
 

Request      

GET api/v1/job-types/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job type. Example: 564

GET api/v1/job-skills

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-skills" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 1,
            "name": "Javascript",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 4,
            "name": "Laravel",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 2,
            "name": "PHP",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 3,
            "name": "Python",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 6,
            "name": "Wordpress",
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/job-skills?page=1",
        "last": "https://jobcy.botble.com/api/v1/job-skills?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/job-skills?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/job-skills",
        "per_page": 50,
        "to": 6,
        "total": 6
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/job-skills

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/job-skills/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-skills/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-skills/564"
);

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"
}
 

Request      

GET api/v1/job-skills/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job skill. Example: 564

GET api/v1/job-experiences

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-experiences" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 11,
            "name": "9 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 10,
            "name": "8 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 9,
            "name": "7 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 8,
            "name": "6 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 7,
            "name": "5 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 6,
            "name": "4 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 5,
            "name": "3 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 4,
            "name": "2 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 3,
            "name": "1 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 2,
            "name": "Less Than 1 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 12,
            "name": "10 Year",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/job-experiences?page=1",
        "last": "https://jobcy.botble.com/api/v1/job-experiences?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/job-experiences?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/job-experiences",
        "per_page": 20,
        "to": 12,
        "total": 12
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/job-experiences

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/job-experiences/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-experiences/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-experiences/564"
);

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"
}
 

Request      

GET api/v1/job-experiences/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job experience. Example: 564

GET api/v1/career-levels

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/career-levels" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 2,
            "name": "Entry Level",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 3,
            "name": "Experienced Professional",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 4,
            "name": "GM / CEO / Country Head / President",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 5,
            "name": "Intern/Student",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/career-levels?page=1",
        "last": "https://jobcy.botble.com/api/v1/career-levels?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/career-levels?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/career-levels",
        "per_page": 20,
        "to": 5,
        "total": 5
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/career-levels

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/career-levels/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/career-levels/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/career-levels/564"
);

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"
}
 

Request      

GET api/v1/career-levels/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the career level. Example: 564

GET api/v1/job-shifts

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-shifts" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 2,
            "name": "Second Shift (Afternoon)",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 3,
            "name": "Third Shift (Night)",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        },
        {
            "id": 4,
            "name": "Rotating",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:35.000000Z",
            "updated_at": "2025-10-01T03:01:35.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/job-shifts?page=1",
        "last": "https://jobcy.botble.com/api/v1/job-shifts?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/job-shifts?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/job-shifts",
        "per_page": 20,
        "to": 4,
        "total": 4
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/job-shifts

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/job-shifts/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-shifts/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-shifts/564"
);

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"
}
 

Request      

GET api/v1/job-shifts/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job shift. Example: 564

GET api/v1/functional-areas

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/functional-areas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 156,
            "name": "SEM",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 13,
            "name": "Business Development",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 14,
            "name": "Business Management",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 15,
            "name": "Business Systems Analyst",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 16,
            "name": "Clerical",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 17,
            "name": "Client Services & Customer Support",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 18,
            "name": "Computer Hardware",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 19,
            "name": "Computer Networking",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 20,
            "name": "Consultant",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 12,
            "name": "Bank Operation",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 11,
            "name": "Architecture",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 10,
            "name": "Architects & Construction",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 2,
            "name": "Accounts, Finance & Financial Services",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 3,
            "name": "Admin",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 4,
            "name": "Admin Operation",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 5,
            "name": "Administration",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 6,
            "name": "Administration Clerical",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 7,
            "name": "Advertising",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 8,
            "name": "Advertising",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        },
        {
            "id": 9,
            "name": "Advertisement",
            "order": 0,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "created_at": "2025-10-01T03:01:34.000000Z",
            "updated_at": "2025-10-01T03:01:34.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/functional-areas?page=1",
        "last": "https://jobcy.botble.com/api/v1/functional-areas?page=8",
        "prev": null,
        "next": "https://jobcy.botble.com/api/v1/functional-areas?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 8,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=3",
                "label": "3",
                "page": 3,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=4",
                "label": "4",
                "page": 4,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=5",
                "label": "5",
                "page": 5,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=6",
                "label": "6",
                "page": 6,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=7",
                "label": "7",
                "page": 7,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=8",
                "label": "8",
                "page": 8,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/functional-areas?page=2",
                "label": "Next &raquo;",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/functional-areas",
        "per_page": 20,
        "to": 20,
        "total": 156
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/functional-areas

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/functional-areas/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/functional-areas/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/functional-areas/564"
);

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"
}
 

Request      

GET api/v1/functional-areas/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the functional area. Example: 564

GET api/v1/tags/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/tags/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/tags/564"
);

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": "Tag not found"
}
 

Request      

GET api/v1/tags/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the tag. Example: 564

GET api/v1/tags/{id}/jobs

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/tags/564/jobs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/tags/564/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": "Tag not found"
}
 

Request      

GET api/v1/tags/{id}/jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the tag. Example: 564

GET api/v1/currencies

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/currencies" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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"
}
 

Request      

GET api/v1/currencies

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/currencies/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/currencies/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/currencies/564"
);

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"
}
 

Request      

GET api/v1/currencies/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the currency. Example: 564

GET api/v1/packages

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/packages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": "https://jobcy.botble.com/api/v1/packages?page=1",
        "last": "https://jobcy.botble.com/api/v1/packages?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/packages?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/packages",
        "per_page": 20,
        "to": 5,
        "total": 5
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/packages

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/packages/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/packages/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/packages/564"
);

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"
}
 

Request      

GET api/v1/packages/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the package. Example: 564

GET api/v1/candidates

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/candidates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": [
        {
            "id": 2,
            "name": "Minerva Brekke",
            "first_name": "Minerva",
            "last_name": "Brekke",
            "email": "[email protected]",
            "phone": "+14426797710",
            "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
            "dob": "2015-05-18T00:00:00.000000Z",
            "gender": null,
            "description": "Creative Designer",
            "bio": "Next came an angry tone, 'Why, Mary Ann, and be turned out of sight: 'but it sounds uncommon nonsense.' Alice said to herself, 'after such a capital one for catching mice--oh, I beg your pardon!'.",
            "address": "196 Medhurst Camp Apt. 432\nWest Jermeyborough, SC 12250-7700",
            "type": {
                "value": "job-seeker",
                "label": "Job seeker"
            },
            "credits": 0,
            "is_public_profile": 1,
            "hide_cv": 0,
            "available_for_hiring": 1,
            "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
            "resume_name": "01.pdf",
            "cover_letter_url": null,
            "unique_id": null,
            "educations": [
                {
                    "id": 1,
                    "school": "The University of the State of Alabama",
                    "account_id": 2,
                    "specialized": "Art History",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:39.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "experiences": [
                {
                    "id": 1,
                    "company": "Party Plex",
                    "account_id": 2,
                    "position": "Project Manager",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:39.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "created_at": "2025-01-22T17:37:17.000000Z",
            "updated_at": "2025-10-01T03:01:39.000000Z",
            "country": {
                "id": 1,
                "name": "France",
                "code": "FRA"
            },
            "state": {
                "id": null,
                "name": null
            },
            "city": {
                "id": null,
                "name": null
            }
        },
        {
            "id": 7,
            "name": "Rachel Langosh",
            "first_name": "Rachel",
            "last_name": "Langosh",
            "email": "[email protected]",
            "phone": "+15857220914",
            "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
            "dob": "1983-03-20T00:00:00.000000Z",
            "gender": null,
            "description": "This did not quite.",
            "bio": "Duchess: 'flamingoes and mustard both bite. And the moral of that is--\"Oh, 'tis love, 'tis love, 'tis love, 'tis love, 'tis love, that makes people hot-tempered,' she went on, 'you see, a dog growls.",
            "address": "9166 Hilpert Orchard Suite 991\nLake Wilfredo, WY 72276-3475",
            "type": {
                "value": "job-seeker",
                "label": "Job seeker"
            },
            "credits": 0,
            "is_public_profile": 1,
            "hide_cv": 0,
            "available_for_hiring": 1,
            "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
            "resume_name": "01.pdf",
            "cover_letter_url": null,
            "unique_id": null,
            "educations": [
                {
                    "id": 3,
                    "school": "Antioch University McGregor",
                    "account_id": 7,
                    "specialized": "Anthropology",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:40.000000Z",
                    "updated_at": "2025-10-01T03:01:40.000000Z"
                }
            ],
            "experiences": [
                {
                    "id": 3,
                    "company": "Party Plex",
                    "account_id": 7,
                    "position": "President of Sales",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:40.000000Z",
                    "updated_at": "2025-10-01T03:01:40.000000Z"
                }
            ],
            "created_at": "2025-01-09T11:57:06.000000Z",
            "updated_at": "2025-10-01T03:01:40.000000Z",
            "country": {
                "id": 1,
                "name": "France",
                "code": "FRA"
            },
            "state": {
                "id": null,
                "name": null
            },
            "city": {
                "id": null,
                "name": null
            }
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/candidates?page=1",
        "last": "https://jobcy.botble.com/api/v1/candidates?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/candidates?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/candidates",
        "per_page": 12,
        "to": 2,
        "total": 2
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/candidates

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/candidates/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/candidates/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/candidates/564"
);

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"
}
 

Request      

GET api/v1/candidates/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the candidate. Example: 564

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/candidates/search" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": [
        {
            "id": 2,
            "name": "Minerva Brekke",
            "first_name": "Minerva",
            "last_name": "Brekke",
            "email": "[email protected]",
            "phone": "+14426797710",
            "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
            "dob": "2015-05-18T00:00:00.000000Z",
            "gender": null,
            "description": "Creative Designer",
            "bio": "Next came an angry tone, 'Why, Mary Ann, and be turned out of sight: 'but it sounds uncommon nonsense.' Alice said to herself, 'after such a capital one for catching mice--oh, I beg your pardon!'.",
            "address": "196 Medhurst Camp Apt. 432\nWest Jermeyborough, SC 12250-7700",
            "type": {
                "value": "job-seeker",
                "label": "Job seeker"
            },
            "credits": 0,
            "is_public_profile": 1,
            "hide_cv": 0,
            "available_for_hiring": 1,
            "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
            "resume_name": "01.pdf",
            "cover_letter_url": null,
            "unique_id": null,
            "educations": [
                {
                    "id": 1,
                    "school": "The University of the State of Alabama",
                    "account_id": 2,
                    "specialized": "Art History",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:39.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "experiences": [
                {
                    "id": 1,
                    "company": "Party Plex",
                    "account_id": 2,
                    "position": "Project Manager",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:39.000000Z",
                    "updated_at": "2025-10-01T03:01:39.000000Z"
                }
            ],
            "created_at": "2025-01-22T17:37:17.000000Z",
            "updated_at": "2025-10-01T03:01:39.000000Z",
            "country": {
                "id": 1,
                "name": "France",
                "code": "FRA"
            },
            "state": {
                "id": null,
                "name": null
            },
            "city": {
                "id": null,
                "name": null
            }
        },
        {
            "id": 7,
            "name": "Rachel Langosh",
            "first_name": "Rachel",
            "last_name": "Langosh",
            "email": "[email protected]",
            "phone": "+15857220914",
            "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
            "dob": "1983-03-20T00:00:00.000000Z",
            "gender": null,
            "description": "This did not quite.",
            "bio": "Duchess: 'flamingoes and mustard both bite. And the moral of that is--\"Oh, 'tis love, 'tis love, 'tis love, 'tis love, 'tis love, that makes people hot-tempered,' she went on, 'you see, a dog growls.",
            "address": "9166 Hilpert Orchard Suite 991\nLake Wilfredo, WY 72276-3475",
            "type": {
                "value": "job-seeker",
                "label": "Job seeker"
            },
            "credits": 0,
            "is_public_profile": 1,
            "hide_cv": 0,
            "available_for_hiring": 1,
            "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
            "resume_name": "01.pdf",
            "cover_letter_url": null,
            "unique_id": null,
            "educations": [
                {
                    "id": 3,
                    "school": "Antioch University McGregor",
                    "account_id": 7,
                    "specialized": "Anthropology",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:40.000000Z",
                    "updated_at": "2025-10-01T03:01:40.000000Z"
                }
            ],
            "experiences": [
                {
                    "id": 3,
                    "company": "Party Plex",
                    "account_id": 7,
                    "position": "President of Sales",
                    "started_at": "2025-10-01T00:00:00.000000Z",
                    "ended_at": "2025-10-01T00:00:00.000000Z",
                    "description": "There are many variations of passages of available, but the majority alteration in some form.\n                As a highly skilled and successful product development and design specialist with more than 4 Years of\n                My experience",
                    "created_at": "2025-10-01T03:01:40.000000Z",
                    "updated_at": "2025-10-01T03:01:40.000000Z"
                }
            ],
            "created_at": "2025-01-09T11:57:06.000000Z",
            "updated_at": "2025-10-01T03:01:40.000000Z",
            "country": {
                "id": 1,
                "name": "France",
                "code": "FRA"
            },
            "state": {
                "id": null,
                "name": null
            },
            "city": {
                "id": null,
                "name": null
            }
        }
    ],
    "error": false,
    "message": null
}
 

GET api/v1/reviews

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/reviews" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 4,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 10,
            "account": {
                "id": 1,
                "name": "Deonte Ferry",
                "first_name": "Deonte",
                "last_name": "Ferry",
                "email": "[email protected]",
                "phone": "+13808129048",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                "dob": "2007-11-21T00:00:00.000000Z",
                "gender": null,
                "description": "Software Developer",
                "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                "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-11-16T00:42:30.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "reviewable": {
                "id": 10,
                "name": "Elroy Cormier",
                "first_name": "Elroy",
                "last_name": "Cormier",
                "email": "[email protected]",
                "phone": "+15135549938",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "1987-01-18T00:00:00.000000Z",
                "gender": null,
                "description": "Yet you finished.",
                "bio": "Alice was not easy to take the place where it had grown in the flurry of the Lizard's slate-pencil, and the Mock Turtle, 'but if you've seen them so often, of course you know what to do, so Alice.",
                "address": "5797 Sauer Terrace\nReichertport, NY 18348-7560",
                "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-05-24T16:54:02.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 2,
            "star": 1,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 9,
            "account": {
                "id": 2,
                "name": "Minerva Brekke",
                "first_name": "Minerva",
                "last_name": "Brekke",
                "email": "[email protected]",
                "phone": "+14426797710",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                "dob": "2015-05-18T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "Next came an angry tone, 'Why, Mary Ann, and be turned out of sight: 'but it sounds uncommon nonsense.' Alice said to herself, 'after such a capital one for catching mice--oh, I beg your pardon!'.",
                "address": "196 Medhurst Camp Apt. 432\nWest Jermeyborough, SC 12250-7700",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 1,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-01-22T17:37:17.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "reviewable": {
                "id": 9,
                "name": "Rashawn Welch",
                "first_name": "Rashawn",
                "last_name": "Welch",
                "email": "[email protected]",
                "phone": "+15344735828",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "2019-11-13T00:00:00.000000Z",
                "gender": null,
                "description": "Alice, very much.",
                "bio": "The Hatter's remark seemed to be ashamed of yourself,' said Alice, as she spoke--fancy CURTSEYING as you're falling through the doorway; 'and even if my head would go through,' thought poor Alice.",
                "address": "848 Tillman Locks\nWest Domenico, MN 00259-8666",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-06-07T08:30:33.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 3,
            "star": 5,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Company",
            "reviewable_id": 2,
            "account": {
                "id": 9,
                "name": "Rashawn Welch",
                "first_name": "Rashawn",
                "last_name": "Welch",
                "email": "[email protected]",
                "phone": "+15344735828",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "2019-11-13T00:00:00.000000Z",
                "gender": null,
                "description": "Alice, very much.",
                "bio": "The Hatter's remark seemed to be ashamed of yourself,' said Alice, as she spoke--fancy CURTSEYING as you're falling through the doorway; 'and even if my head would go through,' thought poor Alice.",
                "address": "848 Tillman Locks\nWest Domenico, MN 00259-8666",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-06-07T08:30:33.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 2,
                "name": "Linkedin",
                "description": "Tenetur quam id quo consequatur officia aut. Sit ex quia non ducimus sequi iusto dolorum. Asperiores in in voluptatem tenetur. Iste maiores amet sit in velit qui id.",
                "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": "1162 Julia Island\nLake Ilaton, NH 47057-4091",
                "email": null,
                "phone": "+15859306553",
                "website": "https://www.linkedin.com",
                "year_founded": 1997,
                "number_of_offices": 3,
                "number_of_employees": 7,
                "annual_revenue": "10M",
                "ceo": "Jeff Weiner",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/linkedin",
                "latitude": "42.966862",
                "longitude": "-75.472699",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-01-14T06:55:04.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 4,
            "star": 1,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 3,
            "account": {
                "id": null,
                "name": " ",
                "first_name": "",
                "last_name": "",
                "email": null,
                "phone": null,
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": 3,
                "name": "Sarah Harding",
                "first_name": "Sarah",
                "last_name": "Harding",
                "email": "[email protected]",
                "phone": "+15187170645",
                "avatar": "data:image/jpeg;base64,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",
                "dob": "2017-04-15T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "Long Tale They were just beginning to feel very queer to ME.' 'You!' said the King, 'that only makes the matter with it. There could be NO mistake about it: it was the only difficulty was, that she.",
                "address": "37373 Greenfelder Mount\nFayemouth, RI 60736-3079",
                "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-03-26T07:48:27.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 5,
            "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/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": "[email protected]",
                "phone": "+12405089264",
                "avatar": "data:image/jpeg;base64,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",
                "dob": "2015-09-29T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "Then followed the Knave of Hearts, who only bowed and smiled in reply. 'That's right!' shouted the Gryphon, and the words came very queer to ME.' 'You!' said the Dodo, 'the best way you go,' said.",
                "address": "3890 Jayme Extensions\nLake Bertfort, MT 76126-8782",
                "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-11-26T00:28:23.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 6,
            "star": 3,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 10,
            "account": {
                "id": 4,
                "name": "Steven Jobs",
                "first_name": "Steven",
                "last_name": "Jobs",
                "email": "[email protected]",
                "phone": "+14303369636",
                "avatar": "data:image/jpeg;base64,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",
                "dob": "2004-07-19T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                "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-04-02T13:57:56.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "reviewable": {
                "id": 10,
                "name": "Elroy Cormier",
                "first_name": "Elroy",
                "last_name": "Cormier",
                "email": "[email protected]",
                "phone": "+15135549938",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "1987-01-18T00:00:00.000000Z",
                "gender": null,
                "description": "Yet you finished.",
                "bio": "Alice was not easy to take the place where it had grown in the flurry of the Lizard's slate-pencil, and the Mock Turtle, 'but if you've seen them so often, of course you know what to do, so Alice.",
                "address": "5797 Sauer Terrace\nReichertport, NY 18348-7560",
                "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-05-24T16:54:02.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 7,
            "star": 2,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 1,
            "account": {
                "id": 8,
                "name": "Candice Huel",
                "first_name": "Candice",
                "last_name": "Huel",
                "email": "[email protected]",
                "phone": "+17403408446",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "1996-02-14T00:00:00.000000Z",
                "gender": null,
                "description": "I can do without.",
                "bio": "Majesty,' the Hatter were having tea at it: a Dormouse was sitting on a three-legged stool in the window?' 'Sure, it's an arm, yer honour!' 'Digging for apples, indeed!' said the last time she found.",
                "address": "866 Lockman Coves Suite 672\nRomaguerabury, AZ 77261",
                "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-10-15T16:30:46.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 1,
                "name": "Deonte Ferry",
                "first_name": "Deonte",
                "last_name": "Ferry",
                "email": "[email protected]",
                "phone": "+13808129048",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                "dob": "2007-11-21T00:00:00.000000Z",
                "gender": null,
                "description": "Software Developer",
                "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                "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-11-16T00:42:30.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 8,
            "star": 1,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 8,
            "account": {
                "id": 5,
                "name": "William Kennedy",
                "first_name": "William",
                "last_name": "Kennedy",
                "email": "[email protected]",
                "phone": "+12405089264",
                "avatar": "data:image/jpeg;base64,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",
                "dob": "2015-09-29T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "Then followed the Knave of Hearts, who only bowed and smiled in reply. 'That's right!' shouted the Gryphon, and the words came very queer to ME.' 'You!' said the Dodo, 'the best way you go,' said.",
                "address": "3890 Jayme Extensions\nLake Bertfort, MT 76126-8782",
                "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-11-26T00:28:23.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 8,
                "name": "Candice Huel",
                "first_name": "Candice",
                "last_name": "Huel",
                "email": "[email protected]",
                "phone": "+17403408446",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "1996-02-14T00:00:00.000000Z",
                "gender": null,
                "description": "I can do without.",
                "bio": "Majesty,' the Hatter were having tea at it: a Dormouse was sitting on a three-legged stool in the window?' 'Sure, it's an arm, yer honour!' 'Digging for apples, indeed!' said the last time she found.",
                "address": "866 Lockman Coves Suite 672\nRomaguerabury, AZ 77261",
                "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-10-15T16:30:46.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 9,
            "star": 5,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 4,
            "account": {
                "id": null,
                "name": " ",
                "first_name": "",
                "last_name": "",
                "email": null,
                "phone": null,
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": 4,
                "name": "Steven Jobs",
                "first_name": "Steven",
                "last_name": "Jobs",
                "email": "[email protected]",
                "phone": "+14303369636",
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAGwABAAMAAwEAAAAAAAAAAAAAAAUGBwIDBAH/xABCEAEAAQMCAgQKBgYLAQAAAAAAAQIDBAURBjESIUGBBxMUIlFhcZGhwUJDYnKx0RUWMlJV8RcjJDNjgpOywuHi8P/EABsBAQACAwEBAAAAAAAAAAAAAAAFBgIDBAEH/8QALxEBAAICAQIEBAUEAwAAAAAAAAECAwQRBTEGEiFBUWFxgTKRocHRE0Kx8CIz8f/aAAwDAQACEQMRAD8A7wFnfKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHdi4t7NybePj25uXbk7U0x2kzx6y9iJtPEd3SmNO4X1bU4iqzizRan6y75tP5z3L3oHB+HpVFN7Kppyczn0qo3pon7MfP8FlRubqHE8Y4+6z6Xh2bRF9mePlH7yoON4Oa5iJytRppn921b3+MzH4PfT4PNMiPPy8ufZNMf8VvHHO3mn+5NU6NpUjjyc/XlTrng706Y/q8zKpn7XRn5QjMvwd5duJnEzbV77NymaJ+bRAruZo92OToulePwcfSZYpqGk5+l19HMxq7W/VFUxvTPsmOp4m63rNrItVWr1ui5bqjaqmuN4nuZ9xNwZ5JbrztMpqqsx13LHOaI9MemHfg3q3ny39JV/qHQb4Kzkwz5qx7e8fypYDvV8AAAAAAAAAAAAAAAAAAAAaXwNotOHp36Ru0/wBoyY8zf6NHZ7+fuZtaom7dotxzqqimO9udm1RYsW7NuNqLdMU0x6IiNkf1DJNaRSPdYvDutXJmtlt/b2+suYPBrOoRpWj5ObtEzbp82J7apnaPjMImsTaYiFwyXrjpN7do9X3UdYwNKoirNyaLczG8U86p9kR1oG54QdJoqmKLGXX64opiPjLOMnJvZmTXkZFyq5drneqqrtdSXp0/HEf8p5lTs/iLYtaf6UREfnLUMbj3Rr9cU3PKLHruUbx8JlY8fJsZdmm9j3aLtqrlVRO8SwxM8N65d0XUqKunPktyqKb1HZt6fbDDNoV8vOPu3aXiHJ54rsRHE+8ezXwjrjeBFLcyzjLQ6dJ1OL2PT0cXJ3qpiOVNXbHs7f5K01jjPDjL4ayKtt67Exdp7p2n4TLJ07p5ZyYvXvCgda1a6+1MV7W9QB1IkAAAAAAAAAAAAAAAAAB241yLWVauTyorpqnulucTExvHJg7XeFNUp1TQrMzVvesxFq7HbvHKe+Ov3o3qNJmsW+CzeGs1a3vinvPEx9v/AFNojifBu6jw7l2LMTVd2iummO3ozE7fBLiMpaa2i0ey15sUZcdsdu0xx+bB+U7DUdd4MxNVrryMarybKq65mI3orn1x2T64UTUeGtV0uZm/i1VW4+ttedT8OXfsncO1jyR6TxKgbnStnVmeY5r8Y/30RIDoRq+43hBsWcWzarwbtVVFFNM1dOOuYjm7f6Rsb+H3f9SGejlnSwz7JaOubsRxFv0hedQ48xs3TcrFjAu0zetVW4qmuOqZiY3UYG3Fhpijijj2t3NtWi2aeZgAbXKAAAAAAAAAAAAAAAAAAJTQdbv6FqEX7cdO1V5t23v+1H5+hFjG1YtHlnszxZb4rxek8TDbtP1HF1TEpycS7Fdurn6aZ9Ex2S9TE9N1TM0nJ8fh3pt1fSjnTVHomO1f9J47wcuKbeoU+S3uXS50T3847/eh8+lenrT1hddDrmHPEVzT5bfpP3/lbRwtXbd+3FyzcouW6uVVFW8T3ubiTkTE+sIzO4f0rUt5ycK3Nc/Tpjo1e+FV1LweTETXpuV0v8K/8qo/JfRvx7GTH+GXFs9N1dj8dI5+MeksRztOzNNveKzMeuzX2dKOqfZPKe55W45WHj52PVYyrNF21Vzpqjf+TOuJODrmmU15mD0ruJHXVRPXVb/OP/vWksG7XJPlt6SqvUOh5NeJyYp81f1j+VTAdyCAAAAAAAAAAAAAAAAAAAAB68LTM3UprjDxq700bdLo9m/L8Hs/VjW/4bf90MJyUieJlupr5rx5q0mY+kogS/6sa3/Db/uhH5eHkYF+bGVZqtXYiJ6NXPZ7F629Il5fBlxxzesxHziXPD1HM06508TJuWZ7ehV1T7Y5Ss+B4Qc2ztTnY9vIp/fo8yr8vhCnDDJhx5PxQ26+9sa//VeY/wAfl2a7pnFek6nMUUZHibs/V3vNnunlPvTbB1p4Y4rydOybWLmXZu4VUxTvXO82vXE+j1I/NocR5sc/ZY9HxD57RTZjjn3j94ae+TETExMbxPOJfRGrQyri/QqdH1KLtinbFyN6qIj6FXbT+X/SuNZ4yw4y+Gsidt67Exdp9W09fwmWTJ3Tyzkx+veFA6zqV1tqYp2t6wAOpEgAAAAAAAAAAAAAAAAALn4O78U6nmWJnruWoqj/ACz/AOmisZ0HUf0TrWNlzv0Katrm37s9U/n3NlpqproiumYqpqjeJjlMIbfpMZPN8V28PZ4vqzj96z+k+v8AL6zjwhYlVvVcfLiPMu2uhv8AapmflMNHeDV9Kx9Z0+vEyN4ieuiuOdFXZMNGtl/pZItPZIdT1J2ta2OvfvH1YsJvVOFdV0y5Vvj1X7McrtmOlG3rjnHehZiaZmJiYmOyU9S9bxzWeXz7LgyYbeXJWYn5vg5W7dd2uKLdFVdU8opjeVu4c4NysjJt5WpWps41ExV4quNqrnqmOyPaxyZa445tLPW1MuzeKY45/wAR9Wg4PT8gxvGb9PxVPS39O3W7wV2Z5l9MrHERCP13b9X9R35eTXP9ssXazxlmU4nDWRTvtXf2tUx6d56/hEsmS3TomMcz81N8SXiditY9o/cASCugAAAAAAAAAAAAAAAAAC98G8UUW7dGlZ9yKYjqsXap6vuz8vcog1ZsVctfLZ1ae5k1MsZMf3+cN4GX6HxpmaZTTj5UTlY0dUbz59Eeqe32SvWncSaTqcRFjLopuT9Xd82r48+7dC5dXJj7xzC86fVdbaj0txb4T/vqlnCu1buft26avvRu5jnSMxy40W6LcbUUU0x6o2cgHvYfKqqaKKq66opppjeZmdoiEVqXEmlaXTPj8qmq5H1VuelV7o5d+zPtf4sy9aibFuPJ8Tf+7ieuv70/J04dW+WfhCM3era+rWY55t8I/f4HFuvRrWoxRYmfJLG9Nv7U9tSvAm8dIpWK1ULYz3z5Jy37yAM2oAAAAAAAAAAAAAAAAAAAAAB7MbVtRw4iMfOyLVMfRpuTt7uSQo4v16iNo1CqfvW6J/GEGMJxUt3iG+m1nxxxS8x9JlN18X69XG06hV3W6I/CHhydX1LMiYyM7IuUz9Gq5O3u5PEEYqV7RBfaz3ji95n6zIAzaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH//2Q==",
                "dob": "2004-07-19T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                "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-04-02T13:57:56.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 10,
            "star": 3,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Company",
            "reviewable_id": 5,
            "account": {
                "id": 9,
                "name": "Rashawn Welch",
                "first_name": "Rashawn",
                "last_name": "Welch",
                "email": "[email protected]",
                "phone": "+15344735828",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "2019-11-13T00:00:00.000000Z",
                "gender": null,
                "description": "Alice, very much.",
                "bio": "The Hatter's remark seemed to be ashamed of yourself,' said Alice, as she spoke--fancy CURTSEYING as you're falling through the doorway; 'and even if my head would go through,' thought poor Alice.",
                "address": "848 Tillman Locks\nWest Domenico, MN 00259-8666",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-06-07T08:30:33.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 5,
                "name": "Flutter",
                "description": "Officia necessitatibus reprehenderit inventore quasi. Qui accusantium est incidunt nisi tempore. Aut veniam soluta ut 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": "46359 Gutmann Via\nNorth Fredyborough, AZ 05248",
                "email": null,
                "phone": "+17063977820",
                "website": "https://flutter.io",
                "year_founded": 1983,
                "number_of_offices": 8,
                "number_of_employees": 9,
                "annual_revenue": "4M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/flutter",
                "latitude": "42.517019",
                "longitude": "-75.323091",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-07-14T10:19:18.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 11,
            "star": 1,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 4,
            "account": {
                "id": null,
                "name": " ",
                "first_name": "",
                "last_name": "",
                "email": null,
                "phone": null,
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": 4,
                "name": "Steven Jobs",
                "first_name": "Steven",
                "last_name": "Jobs",
                "email": "[email protected]",
                "phone": "+14303369636",
                "avatar": "data:image/jpeg;base64,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",
                "dob": "2004-07-19T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                "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-04-02T13:57:56.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 12,
            "star": 3,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 10,
            "account": {
                "id": null,
                "name": " ",
                "first_name": "",
                "last_name": "",
                "email": null,
                "phone": null,
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": 10,
                "name": "Elroy Cormier",
                "first_name": "Elroy",
                "last_name": "Cormier",
                "email": "[email protected]",
                "phone": "+15135549938",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "1987-01-18T00:00:00.000000Z",
                "gender": null,
                "description": "Yet you finished.",
                "bio": "Alice was not easy to take the place where it had grown in the flurry of the Lizard's slate-pencil, and the Mock Turtle, 'but if you've seen them so often, of course you know what to do, so Alice.",
                "address": "5797 Sauer Terrace\nReichertport, NY 18348-7560",
                "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-05-24T16:54:02.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 13,
            "star": 5,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Company",
            "reviewable_id": 10,
            "account": {
                "id": 4,
                "name": "Steven Jobs",
                "first_name": "Steven",
                "last_name": "Jobs",
                "email": "[email protected]",
                "phone": "+14303369636",
                "avatar": "data:image/jpeg;base64,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",
                "dob": "2004-07-19T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                "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-04-02T13:57:56.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "reviewable": {
                "id": 10,
                "name": "VKontakte",
                "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
                "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
                "email": null,
                "phone": "+16697002110",
                "website": "https://vk.com",
                "year_founded": 2021,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": "Vasya Pupkin",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vkontakte",
                "latitude": "43.193521",
                "longitude": "-75.875674",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-04-11T05:03:41.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 14,
            "star": 1,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 1,
            "account": {
                "id": null,
                "name": " ",
                "first_name": "",
                "last_name": "",
                "email": null,
                "phone": null,
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": 1,
                "name": "Deonte Ferry",
                "first_name": "Deonte",
                "last_name": "Ferry",
                "email": "[email protected]",
                "phone": "+13808129048",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                "dob": "2007-11-21T00:00:00.000000Z",
                "gender": null,
                "description": "Software Developer",
                "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                "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-11-16T00:42:30.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 15,
            "star": 2,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Company",
            "reviewable_id": 10,
            "account": {
                "id": 9,
                "name": "Rashawn Welch",
                "first_name": "Rashawn",
                "last_name": "Welch",
                "email": "[email protected]",
                "phone": "+15344735828",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "2019-11-13T00:00:00.000000Z",
                "gender": null,
                "description": "Alice, very much.",
                "bio": "The Hatter's remark seemed to be ashamed of yourself,' said Alice, as she spoke--fancy CURTSEYING as you're falling through the doorway; 'and even if my head would go through,' thought poor Alice.",
                "address": "848 Tillman Locks\nWest Domenico, MN 00259-8666",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-06-07T08:30:33.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 10,
                "name": "VKontakte",
                "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
                "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
                "email": null,
                "phone": "+16697002110",
                "website": "https://vk.com",
                "year_founded": 2021,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": "Vasya Pupkin",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vkontakte",
                "latitude": "43.193521",
                "longitude": "-75.875674",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-04-11T05:03:41.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 16,
            "star": 1,
            "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/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": "Telly Dooley",
                "first_name": "Telly",
                "last_name": "Dooley",
                "email": "[email protected]",
                "phone": "+19568229753",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/5.jpg",
                "dob": "1991-10-02T00:00:00.000000Z",
                "gender": null,
                "description": "That your eye was.",
                "bio": "Alice ventured to ask. 'Suppose we change the subject. 'Go on with the Lory, as soon as look at it!' This speech caused a remarkable sensation among the people that walk with their fur clinging.",
                "address": "287 Wiza Tunnel\nD'Amorehaven, TN 76487",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-03-23T02:58:41.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 17,
            "star": 1,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Company",
            "reviewable_id": 3,
            "account": {
                "id": 8,
                "name": "Candice Huel",
                "first_name": "Candice",
                "last_name": "Huel",
                "email": "[email protected]",
                "phone": "+17403408446",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "1996-02-14T00:00:00.000000Z",
                "gender": null,
                "description": "I can do without.",
                "bio": "Majesty,' the Hatter were having tea at it: a Dormouse was sitting on a three-legged stool in the window?' 'Sure, it's an arm, yer honour!' 'Digging for apples, indeed!' said the last time she found.",
                "address": "866 Lockman Coves Suite 672\nRomaguerabury, AZ 77261",
                "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-10-15T16:30:46.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 18,
            "star": 5,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 2,
            "account": {
                "id": 9,
                "name": "Rashawn Welch",
                "first_name": "Rashawn",
                "last_name": "Welch",
                "email": "[email protected]",
                "phone": "+15344735828",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "2019-11-13T00:00:00.000000Z",
                "gender": null,
                "description": "Alice, very much.",
                "bio": "The Hatter's remark seemed to be ashamed of yourself,' said Alice, as she spoke--fancy CURTSEYING as you're falling through the doorway; 'and even if my head would go through,' thought poor Alice.",
                "address": "848 Tillman Locks\nWest Domenico, MN 00259-8666",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-06-07T08:30:33.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "reviewable": {
                "id": 2,
                "name": "Minerva Brekke",
                "first_name": "Minerva",
                "last_name": "Brekke",
                "email": "[email protected]",
                "phone": "+14426797710",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                "dob": "2015-05-18T00:00:00.000000Z",
                "gender": null,
                "description": "Creative Designer",
                "bio": "Next came an angry tone, 'Why, Mary Ann, and be turned out of sight: 'but it sounds uncommon nonsense.' Alice said to herself, 'after such a capital one for catching mice--oh, I beg your pardon!'.",
                "address": "196 Medhurst Camp Apt. 432\nWest Jermeyborough, SC 12250-7700",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 1,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-01-22T17:37:17.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 19,
            "star": 2,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Company",
            "reviewable_id": 12,
            "account": {
                "id": 1,
                "name": "Deonte Ferry",
                "first_name": "Deonte",
                "last_name": "Ferry",
                "email": "[email protected]",
                "phone": "+13808129048",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                "dob": "2007-11-21T00:00:00.000000Z",
                "gender": null,
                "description": "Software Developer",
                "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                "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-11-16T00:42:30.000000Z",
                "updated_at": "2025-10-01T03:01:39.000000Z"
            },
            "reviewable": {
                "id": 12,
                "name": "Envato",
                "description": "Et earum doloremque ea vel. Voluptas similique ut et qui id labore cupiditate. Neque soluta soluta doloremque voluptates. Fugit hic pariatur est quos.",
                "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": "35874 Watsica Ferry\nEast Beryl, MD 51914",
                "email": null,
                "phone": "+12488448592",
                "website": "https://envato.com",
                "year_founded": 1980,
                "number_of_offices": 5,
                "number_of_employees": 9,
                "annual_revenue": "2M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/envato",
                "latitude": "43.498866",
                "longitude": "-74.958471",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-08T06:39:36.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        },
        {
            "id": 21,
            "star": 4,
            "comment": null,
            "status": {
                "value": "published",
                "label": "Published"
            },
            "reviewable_type": "Botble\\JobBoard\\Models\\Account",
            "reviewable_id": 9,
            "account": {
                "id": null,
                "name": " ",
                "first_name": "",
                "last_name": "",
                "email": null,
                "phone": null,
                "avatar": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAD6APoDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMH/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AooDOVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=",
                "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": 9,
                "name": "Rashawn Welch",
                "first_name": "Rashawn",
                "last_name": "Welch",
                "email": "[email protected]",
                "phone": "+15344735828",
                "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/2.jpg",
                "dob": "2019-11-13T00:00:00.000000Z",
                "gender": null,
                "description": "Alice, very much.",
                "bio": "The Hatter's remark seemed to be ashamed of yourself,' said Alice, as she spoke--fancy CURTSEYING as you're falling through the doorway; 'and even if my head would go through,' thought poor Alice.",
                "address": "848 Tillman Locks\nWest Domenico, MN 00259-8666",
                "type": {
                    "value": "job-seeker",
                    "label": "Job seeker"
                },
                "credits": 0,
                "is_public_profile": 1,
                "hide_cv": 0,
                "available_for_hiring": 0,
                "resume_url": "https://jobcy.botble.com/storage/themes/jobcy/resume/01.pdf",
                "resume_name": "01.pdf",
                "cover_letter_url": null,
                "unique_id": null,
                "created_at": "2025-06-07T08:30:33.000000Z",
                "updated_at": "2025-10-01T03:01:40.000000Z"
            },
            "created_at": "2025-10-01T03:01:41.000000Z",
            "updated_at": "2025-10-01T03:01:41.000000Z"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/reviews?page=1",
        "last": "https://jobcy.botble.com/api/v1/reviews?page=5",
        "prev": null,
        "next": "https://jobcy.botble.com/api/v1/reviews?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 5,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/reviews?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://jobcy.botble.com/api/v1/reviews?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/reviews?page=3",
                "label": "3",
                "page": 3,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/reviews?page=4",
                "label": "4",
                "page": 4,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/reviews?page=5",
                "label": "5",
                "page": 5,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/reviews?page=2",
                "label": "Next &raquo;",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/reviews",
        "per_page": 20,
        "to": 20,
        "total": 93
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/reviews

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/reviews/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/reviews/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/reviews/564"
);

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"
}
 

Request      

GET api/v1/reviews/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the review. Example: 564

GET api/v1/analytics/jobs/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/analytics/jobs/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/analytics/jobs/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/analytics/jobs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job. Example: 564

GET api/v1/analytics/companies/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/analytics/companies/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/analytics/companies/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/analytics/companies/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the company. Example: 564

GET api/v1/job-applications

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-applications" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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."
}
 

Request      

GET api/v1/job-applications

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/job-applications/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-applications/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-applications/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/job-applications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job application. Example: 564

PUT api/v1/job-applications/{id}

Example request:
curl --request PUT \
    "https://jobcy.botble.com/api/v1/job-applications/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"status\": \"approved\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-applications/564"
);

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());

Request      

PUT api/v1/job-applications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job application. Example: 564

Body Parameters

status   string  optional    

Application status. Example: approved

Must be one of:
  • pending
  • checked

DELETE api/v1/job-applications/{id}

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/job-applications/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-applications/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/job-applications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job application. Example: 564

GET api/v1/job-applications/{id}/download-cv

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/job-applications/564/download-cv" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/job-applications/564/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."
}
 

Request      

GET api/v1/job-applications/{id}/download-cv

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job application. Example: 564

GET api/v1/locations/countries

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/locations/countries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": "https://jobcy.botble.com/api/v1/locations/countries?page=1",
        "last": "https://jobcy.botble.com/api/v1/locations/countries?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/locations/countries?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/locations/countries",
        "per_page": 50,
        "to": 6,
        "total": 6
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/locations/countries

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/locations/states/{countryId}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/locations/states/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/locations/states/564"
);

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"
}
 

Request      

GET api/v1/locations/states/{countryId}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

countryId   string     

Example: 564

GET api/v1/locations/cities/{stateId}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/locations/cities/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/locations/cities/564"
);

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"
}
 

Request      

GET api/v1/locations/cities/{stateId}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

stateId   string     

Example: 564

Jobs

List jobs

Get a paginated list of jobs with filtering options.

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/jobs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 24,
            "name": "Deal Desk Manager",
            "url": "https://jobcy.botble.com/jobs/deal-desk-manager",
            "description": "Cumque dolor animi hic quibusdam corrupti et. Quae consectetur ea ut nisi voluptates velit quo et. Tenetur nam quas ducimus fugit rerum.",
            "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": "2300.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,300.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 7,
            "expire_date": "2025-11-26T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-19T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/1-500x300.png",
            "company": {
                "id": 1,
                "name": "Pinterest",
                "description": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
                "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": "36501 Kris Village\nPort Luna, MD 67602",
                "email": null,
                "phone": "+15419156738",
                "website": "https://www.pinterest.com",
                "year_founded": 1980,
                "number_of_offices": 1,
                "number_of_employees": 9,
                "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": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/pinterest",
                "latitude": "43.451068",
                "longitude": "-75.902191",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-08-09T10:13:58.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 2,
                    "name": "Adobe XD",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/adobe-xd",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 7,
                    "name": "Python",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 5,
                    "name": "CakePHP",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 30, 2025",
            "created_at": "2025-09-30T12:40:26.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.451068",
            "longitude": "-75.902191"
        },
        {
            "id": 32,
            "name": "Customer Success Architect",
            "url": "https://jobcy.botble.com/jobs/customer-success-architect",
            "description": "Molestiae nihil modi blanditiis porro optio asperiores nemo. Praesentium nesciunt veritatis repellendus sit libero facilis. Asperiores et cumque eos earum accusamus nulla.",
            "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": "500.00",
            "salary_to": "1900.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,900.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 6,
            "expire_date": "2025-10-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-29T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 5,
                    "name": "Part Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 3,
                    "name": "Figma",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/figma",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 7,
                    "name": "Python",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 5,
                    "name": "CakePHP",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T22:34:52.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 18,
            "name": "Staff Software Engineer",
            "url": "https://jobcy.botble.com/jobs/staff-software-engineer",
            "description": "Cum molestiae laborum eveniet quas voluptatem dolorem rerum. Tempore a sit qui dignissimos dolores. Sint molestiae quia enim architecto voluptate error tempora.",
            "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": "2000.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,000.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 8,
            "expire_date": "2025-11-22T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-11T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/6-500x300.png",
            "company": {
                "id": 6,
                "name": "Behance",
                "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
                "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
                "email": null,
                "phone": "+14428747586",
                "website": "https://www.behance.net",
                "year_founded": 1978,
                "number_of_offices": 1,
                "number_of_employees": 3,
                "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": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/behance",
                "latitude": "43.221101",
                "longitude": "-76.469064",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-03-23T19:14:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 4,
                    "name": "Internship",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 1,
                    "name": "Illustrator",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/illustrator",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 7,
                    "name": "Python",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 2,
                    "name": "PHP",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T21:11:10.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.221101",
            "longitude": "-76.469064"
        },
        {
            "id": 41,
            "name": "Services Delivery Manager",
            "url": "https://jobcy.botble.com/jobs/services-delivery-manager",
            "description": "Sed at eligendi eos iste itaque aperiam. Quis sit ipsam asperiores voluptas veniam maxime ullam. Excepturi voluptate culpa quibusdam atque et ratione consectetur consectetur.",
            "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": "600.00",
            "salary_to": "1100.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,100.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 10,
            "expire_date": "2025-11-20T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-22T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/3-500x300.png",
            "company": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z",
                "country": {
                    "id": 1,
                    "name": "France",
                    "code": "FRA"
                },
                "state": {
                    "id": 1,
                    "name": "France"
                },
                "city": {
                    "id": 1,
                    "name": "Paris"
                }
            },
            "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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 4,
                    "name": "Sketch",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/sketch",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 7,
                    "name": "Python",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 6,
                    "name": "Wordpress",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T15:11:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            },
            "latitude": "42.492485",
            "longitude": "-76.161314"
        },
        {
            "id": 40,
            "name": "Services Sales Representative",
            "url": "https://jobcy.botble.com/jobs/services-sales-representative",
            "description": "Itaque cum laboriosam sunt non officia. Ut nesciunt quasi itaque eum asperiores. Cupiditate odit maxime nemo repudiandae.",
            "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": "500.00",
            "salary_to": "1200.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,200.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 2,
            "expire_date": "2025-10-29T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-26T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/3-500x300.png",
            "company": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z",
                "country": {
                    "id": 1,
                    "name": "France",
                    "code": "FRA"
                },
                "state": {
                    "id": 1,
                    "name": "France"
                },
                "city": {
                    "id": 1,
                    "name": "Paris"
                }
            },
            "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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 1,
                    "name": "Illustrator",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/illustrator",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 6,
                    "name": "PHP",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/php",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 4,
                    "name": "Laravel",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 28, 2025",
            "created_at": "2025-09-28T19:45:28.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            },
            "latitude": "42.492485",
            "longitude": "-76.161314"
        },
        {
            "id": 38,
            "name": "Technical Partner Manager",
            "url": "https://jobcy.botble.com/jobs/technical-partner-manager",
            "description": "Suscipit consectetur animi pariatur non aperiam nisi. Odit harum quo quis. Dolor veniam accusamus necessitatibus quis dolor.",
            "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": "2400.00",
            "salary_range": {
                "value": "hourly",
                "label": "Hourly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,200.00 - $2,400.00 /hourly",
            "hide_salary": 0,
            "number_of_positions": 5,
            "expire_date": "2025-11-19T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-20T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/10-500x300.png",
            "company": {
                "id": 10,
                "name": "VKontakte",
                "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
                "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
                "email": null,
                "phone": "+16697002110",
                "website": "https://vk.com",
                "year_founded": 2021,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": "Vasya Pupkin",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vkontakte",
                "latitude": "43.193521",
                "longitude": "-75.875674",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-04-11T05:03:41.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z",
                "country": {
                    "id": 6,
                    "name": "Germany",
                    "code": "DN"
                },
                "state": {
                    "id": 6,
                    "name": "Germany"
                },
                "city": {
                    "id": 6,
                    "name": "Berlin"
                }
            },
            "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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 2,
                    "name": "Adobe XD",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/adobe-xd",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 8,
                    "name": "JavaScript",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/javascript",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 5,
                    "name": "CakePHP",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 28, 2025",
            "created_at": "2025-09-28T01:01:31.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.193521",
            "longitude": "-75.875674"
        },
        {
            "id": 44,
            "name": "Senior Director, Global Sales Development",
            "url": "https://jobcy.botble.com/jobs/senior-director-global-sales-development",
            "description": "Atque velit earum et sit. Ducimus cum autem nulla sed tempora non numquam. Quasi enim aut veritatis laboriosam.",
            "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": "600.00",
            "salary_to": "1800.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,800.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-04T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-25T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/4-500x300.png",
            "company": {
                "id": 4,
                "name": "Uber",
                "description": "Possimus perspiciatis et quidem non. Fuga facere natus exercitationem voluptatibus. In non velit harum repudiandae occaecati iure dolorem. Ullam ut sapiente sapiente in tempora.",
                "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": "2273 Nasir Rest Suite 140\nAlisastad, IL 41934",
                "email": null,
                "phone": "+13602333544",
                "website": "https://www.uber.com",
                "year_founded": 1996,
                "number_of_offices": 6,
                "number_of_employees": 7,
                "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": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/uber",
                "latitude": "43.450592",
                "longitude": "-76.37442",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-15T10:38:13.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 4,
                    "name": "Sketch",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/sketch",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 6,
                    "name": "PHP",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/php",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 6,
                    "name": "Wordpress",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 27, 2025",
            "created_at": "2025-09-27T17:29:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 3,
                "name": "New York"
            },
            "city": {
                "id": 3,
                "name": "New York"
            },
            "latitude": "43.450592",
            "longitude": "-76.37442"
        },
        {
            "id": 22,
            "name": "Analyst Relations Manager, Application Security",
            "url": "https://jobcy.botble.com/jobs/analyst-relations-manager-application-security",
            "description": "Velit quo dolor sapiente perferendis rerum placeat est. Sed minus sit et totam. Libero adipisci et et 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": 1,
            "salary_from": "900.00",
            "salary_to": "1600.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$900.00 - $1,600.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 2,
            "expire_date": "2025-11-22T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-02T00:00:00.000000Z",
            "views": 1,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 9,
                    "name": "Consumer Packaged Goods (CPG)",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/consumer-packaged-goods-cpg",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 8,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 2,
                    "name": "Adobe XD",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/adobe-xd",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 7,
                    "name": "Python",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 5,
                    "name": "CakePHP",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 26, 2025",
            "created_at": "2025-09-26T18:46:04.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 49,
            "name": "Inside Account Manager",
            "url": "https://jobcy.botble.com/jobs/inside-account-manager",
            "description": "Necessitatibus distinctio a ad alias officia doloribus. Expedita aut at voluptas quos. Vitae qui in sed rerum. Rerum optio voluptatem velit dolor neque.",
            "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": "800.00",
            "salary_to": "1700.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$800.00 - $1,700.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-02T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/11-500x300.png",
            "company": {
                "id": 11,
                "name": "WordPress",
                "description": "Dolores soluta aut tenetur soluta nobis aut a. Harum et rerum voluptas consequatur. Ut deserunt earum earum optio.",
                "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": "141 Nona Port Apt. 263\nCiarahaven, DE 60104",
                "email": null,
                "phone": "+18206658912",
                "website": "https://wordpress.org",
                "year_founded": 2014,
                "number_of_offices": 9,
                "number_of_employees": 4,
                "annual_revenue": "5M",
                "ceo": "Matt Mullenweg",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/wordpress",
                "latitude": "42.755309",
                "longitude": "-76.382025",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-30T03:47:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 3,
                    "name": "Figma",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/figma",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 8,
                    "name": "JavaScript",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/javascript",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 6,
                    "name": "Wordpress",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 24, 2025",
            "created_at": "2025-09-24T03:57:43.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "42.755309",
            "longitude": "-76.382025"
        },
        {
            "id": 30,
            "name": "Corporate Sales Representative",
            "url": "https://jobcy.botble.com/jobs/corporate-sales-representative",
            "description": "Occaecati voluptatem officia voluptatem quod voluptas. Enim in aut deleniti enim vel dolorum. Sunt laborum unde vel qui. Ipsa commodi quae unde dolorem.",
            "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": "2300.00",
            "salary_range": {
                "value": "yearly",
                "label": "Yearly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,500.00 - $2,300.00 /yearly",
            "hide_salary": 0,
            "number_of_positions": 5,
            "expire_date": "2025-11-05T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-11T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/11-500x300.png",
            "company": {
                "id": 11,
                "name": "WordPress",
                "description": "Dolores soluta aut tenetur soluta nobis aut a. Harum et rerum voluptas consequatur. Ut deserunt earum earum optio.",
                "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": "141 Nona Port Apt. 263\nCiarahaven, DE 60104",
                "email": null,
                "phone": "+18206658912",
                "website": "https://wordpress.org",
                "year_founded": 2014,
                "number_of_offices": 9,
                "number_of_employees": 4,
                "annual_revenue": "5M",
                "ceo": "Matt Mullenweg",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/wordpress",
                "latitude": "42.755309",
                "longitude": "-76.382025",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-30T03:47:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 2,
                    "name": "Adobe XD",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/adobe-xd",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 7,
                    "name": "Python",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 5,
                    "name": "CakePHP",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 22, 2025",
            "created_at": "2025-09-22T23:55:26.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "42.755309",
            "longitude": "-76.382025"
        },
        {
            "id": 51,
            "name": "Senior Laravel Developer (TALL Stack)",
            "url": "https://jobcy.botble.com/jobs/senior-laravel-developer-tall-stack",
            "description": "Provident dolor ea voluptate. Distinctio aut vel omnis voluptatem. Omnis maxime cumque beatae 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": 1,
            "salary_from": "700.00",
            "salary_to": "2000.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$700.00 - $2,000.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 6,
            "expire_date": "2025-11-10T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-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": "https://jobcy.botble.com/storage/themes/jobcy/companies/2-500x300.png",
            "company": {
                "id": 2,
                "name": "Linkedin",
                "description": "Tenetur quam id quo consequatur officia aut. Sit ex quia non ducimus sequi iusto dolorum. Asperiores in in voluptatem tenetur. Iste maiores amet sit in velit qui id.",
                "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": "1162 Julia Island\nLake Ilaton, NH 47057-4091",
                "email": null,
                "phone": "+15859306553",
                "website": "https://www.linkedin.com",
                "year_founded": 1997,
                "number_of_offices": 3,
                "number_of_employees": 7,
                "annual_revenue": "10M",
                "ceo": "Jeff Weiner",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "accounts": [
                    {
                        "id": 1,
                        "name": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/2.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/linkedin",
                "latitude": "42.966862",
                "longitude": "-75.472699",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-01-14T06:55:04.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 4,
                    "name": "Internship",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 4,
                    "name": "Sketch",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/sketch",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 6,
                    "name": "PHP",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/php",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 4,
                    "name": "Laravel",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 22, 2025",
            "created_at": "2025-09-22T01:25:38.000000Z",
            "updated_at": "2025-10-01T03:01:37.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "42.966862",
            "longitude": "-75.472699"
        },
        {
            "id": 10,
            "name": "Principal Designer, Design Systems",
            "url": "https://jobcy.botble.com/jobs/principal-designer-design-systems",
            "description": "Cum vitae magni sit veritatis. Magnam assumenda ratione molestiae maxime molestiae suscipit.",
            "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": "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": 8,
            "expire_date": "2025-10-09T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-07T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/12-500x300.png",
            "company": {
                "id": 12,
                "name": "Envato",
                "description": "Et earum doloremque ea vel. Voluptas similique ut et qui id labore cupiditate. Neque soluta soluta doloremque voluptates. Fugit hic pariatur est quos.",
                "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": "35874 Watsica Ferry\nEast Beryl, MD 51914",
                "email": null,
                "phone": "+12488448592",
                "website": "https://envato.com",
                "year_founded": 1980,
                "number_of_offices": 5,
                "number_of_employees": 9,
                "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": "Deonte Ferry",
                        "first_name": "Deonte",
                        "last_name": "Ferry",
                        "email": "[email protected]",
                        "phone": "+13808129048",
                        "avatar": "https://jobcy.botble.com/storage/themes/jobcy/accounts/1.jpg",
                        "dob": "2007-11-21T00:00:00.000000Z",
                        "gender": null,
                        "description": "Software Developer",
                        "bio": "And she's such a dreadful time.' So Alice began telling them her adventures from the trees had a little shriek and a large canvas bag, which tied up at this moment the door opened inwards, and.",
                        "address": "5876 Feeney Points\nLake Thalia, TX 85826",
                        "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-11-16T00:42:30.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    },
                    {
                        "id": 4,
                        "name": "Steven Jobs",
                        "first_name": "Steven",
                        "last_name": "Jobs",
                        "email": "[email protected]",
                        "phone": "+14303369636",
                        "avatar": "data:image/jpeg;base64,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",
                        "dob": "2004-07-19T00:00:00.000000Z",
                        "gender": null,
                        "description": "Creative Designer",
                        "bio": "THE LITTLE BUSY BEE,\" but it is.' 'I quite agree with you,' said the last few minutes she heard something splashing about in the last words out loud, and the game began. Alice thought to herself.",
                        "address": "265 Deborah Via\nWest Junior, HI 62974-2266",
                        "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-04-02T13:57:56.000000Z",
                        "updated_at": "2025-10-01T03:01:39.000000Z"
                    }
                ],
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/envato",
                "latitude": "43.498866",
                "longitude": "-74.958471",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-08T06:39:36.000000Z",
                "updated_at": "2025-10-01T03:01:36.000000Z",
                "country": {
                    "id": 6,
                    "name": "Germany",
                    "code": "DN"
                },
                "state": {
                    "id": 6,
                    "name": "Germany"
                },
                "city": {
                    "id": 6,
                    "name": "Berlin"
                }
            },
            "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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "tags": [
                {
                    "id": 2,
                    "name": "Adobe XD",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/adobe-xd",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                },
                {
                    "id": 6,
                    "name": "PHP",
                    "description": "",
                    "url": "https://jobcy.botble.com/job-tags/php",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:36.000000Z",
                    "updated_at": "2025-10-01T03:01:36.000000Z"
                }
            ],
            "skills": [
                {
                    "id": 3,
                    "name": "Python",
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "date": "Sep 21, 2025",
            "created_at": "2025-09-21T08:29:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.498866",
            "longitude": "-74.958471"
        }
    ],
    "links": {
        "first": "https://jobcy.botble.com/api/v1/jobs?page=1",
        "last": "https://jobcy.botble.com/api/v1/jobs?page=4",
        "prev": null,
        "next": "https://jobcy.botble.com/api/v1/jobs?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 4,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/jobs?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://jobcy.botble.com/api/v1/jobs?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/jobs?page=3",
                "label": "3",
                "page": 3,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/jobs?page=4",
                "label": "4",
                "page": 4,
                "active": false
            },
            {
                "url": "https://jobcy.botble.com/api/v1/jobs?page=2",
                "label": "Next &raquo;",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://jobcy.botble.com/api/v1/jobs",
        "per_page": 12,
        "to": 12,
        "total": 42
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/jobs

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/jobs/{id}

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/jobs/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/jobs/564"
);

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"
}
 

Request      

GET api/v1/jobs/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job. Example: 564

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/jobs/564/related" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/jobs/564/related"
);

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"
}
 

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/jobs/featured" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 24,
            "name": "Deal Desk Manager",
            "url": "https://jobcy.botble.com/jobs/deal-desk-manager",
            "description": "Cumque dolor animi hic quibusdam corrupti et. Quae consectetur ea ut nisi voluptates velit quo et. Tenetur nam quas ducimus fugit rerum.",
            "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": "2300.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,300.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 7,
            "expire_date": "2025-11-26T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-19T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/1-500x300.png",
            "company": {
                "id": 1,
                "name": "Pinterest",
                "description": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
                "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": "36501 Kris Village\nPort Luna, MD 67602",
                "email": null,
                "phone": "+15419156738",
                "website": "https://www.pinterest.com",
                "year_founded": 1980,
                "number_of_offices": 1,
                "number_of_employees": 9,
                "annual_revenue": "8M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/pinterest",
                "latitude": "43.451068",
                "longitude": "-75.902191",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-08-09T10:13:58.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 30, 2025",
            "created_at": "2025-09-30T12:40:26.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.451068",
            "longitude": "-75.902191"
        },
        {
            "id": 32,
            "name": "Customer Success Architect",
            "url": "https://jobcy.botble.com/jobs/customer-success-architect",
            "description": "Molestiae nihil modi blanditiis porro optio asperiores nemo. Praesentium nesciunt veritatis repellendus sit libero facilis. Asperiores et cumque eos earum accusamus nulla.",
            "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": "500.00",
            "salary_to": "1900.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,900.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 6,
            "expire_date": "2025-10-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-29T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 5,
                    "name": "Part Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T22:34:52.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 44,
            "name": "Senior Director, Global Sales Development",
            "url": "https://jobcy.botble.com/jobs/senior-director-global-sales-development",
            "description": "Atque velit earum et sit. Ducimus cum autem nulla sed tempora non numquam. Quasi enim aut veritatis laboriosam.",
            "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": "600.00",
            "salary_to": "1800.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,800.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-04T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-25T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/4-500x300.png",
            "company": {
                "id": 4,
                "name": "Uber",
                "description": "Possimus perspiciatis et quidem non. Fuga facere natus exercitationem voluptatibus. In non velit harum repudiandae occaecati iure dolorem. Ullam ut sapiente sapiente in tempora.",
                "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": "2273 Nasir Rest Suite 140\nAlisastad, IL 41934",
                "email": null,
                "phone": "+13602333544",
                "website": "https://www.uber.com",
                "year_founded": 1996,
                "number_of_offices": 6,
                "number_of_employees": 7,
                "annual_revenue": "10M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/uber",
                "latitude": "43.450592",
                "longitude": "-76.37442",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-15T10:38:13.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 27, 2025",
            "created_at": "2025-09-27T17:29:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 3,
                "name": "New York"
            },
            "city": {
                "id": 3,
                "name": "New York"
            },
            "latitude": "43.450592",
            "longitude": "-76.37442"
        },
        {
            "id": 49,
            "name": "Inside Account Manager",
            "url": "https://jobcy.botble.com/jobs/inside-account-manager",
            "description": "Necessitatibus distinctio a ad alias officia doloribus. Expedita aut at voluptas quos. Vitae qui in sed rerum. Rerum optio voluptatem velit dolor neque.",
            "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": "800.00",
            "salary_to": "1700.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$800.00 - $1,700.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-02T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/11-500x300.png",
            "company": {
                "id": 11,
                "name": "WordPress",
                "description": "Dolores soluta aut tenetur soluta nobis aut a. Harum et rerum voluptas consequatur. Ut deserunt earum earum optio.",
                "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": "141 Nona Port Apt. 263\nCiarahaven, DE 60104",
                "email": null,
                "phone": "+18206658912",
                "website": "https://wordpress.org",
                "year_founded": 2014,
                "number_of_offices": 9,
                "number_of_employees": 4,
                "annual_revenue": "5M",
                "ceo": "Matt Mullenweg",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/wordpress",
                "latitude": "42.755309",
                "longitude": "-76.382025",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-30T03:47:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 24, 2025",
            "created_at": "2025-09-24T03:57:43.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "42.755309",
            "longitude": "-76.382025"
        },
        {
            "id": 10,
            "name": "Principal Designer, Design Systems",
            "url": "https://jobcy.botble.com/jobs/principal-designer-design-systems",
            "description": "Cum vitae magni sit veritatis. Magnam assumenda ratione molestiae maxime molestiae suscipit.",
            "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": "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": 8,
            "expire_date": "2025-10-09T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-07T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/12-500x300.png",
            "company": {
                "id": 12,
                "name": "Envato",
                "description": "Et earum doloremque ea vel. Voluptas similique ut et qui id labore cupiditate. Neque soluta soluta doloremque voluptates. Fugit hic pariatur est quos.",
                "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": "35874 Watsica Ferry\nEast Beryl, MD 51914",
                "email": null,
                "phone": "+12488448592",
                "website": "https://envato.com",
                "year_founded": 1980,
                "number_of_offices": 5,
                "number_of_employees": 9,
                "annual_revenue": "2M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/12.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/envato",
                "latitude": "43.498866",
                "longitude": "-74.958471",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-08T06:39:36.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 21, 2025",
            "created_at": "2025-09-21T08:29:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.498866",
            "longitude": "-74.958471"
        },
        {
            "id": 4,
            "name": "Digital Marketing Manager",
            "url": "https://jobcy.botble.com/jobs/digital-marketing-manager",
            "description": "Cum voluptatem voluptatibus eaque voluptatem. Qui est et perferendis architecto molestiae voluptates nobis. Odio ipsa non veniam dolorem ipsam illo quam. Aspernatur neque consequatur non quod.",
            "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": "1400.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$800.00 - $1,400.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 7,
            "expire_date": "2025-11-08T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-20T00:00:00.000000Z",
            "views": 1,
            "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": "https://jobcy.botble.com/storage/themes/jobcy/companies/8-500x300.png",
            "company": {
                "id": 8,
                "name": "Adobe",
                "description": "Ut et est veritatis repudiandae assumenda tempora possimus. Optio doloremque ex quia. Et repellat ea aut molestias.",
                "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": "836 Corene Underpass\nNew Lester, ID 92269-3603",
                "email": null,
                "phone": "+16366079095",
                "website": "https://www.adobe.com",
                "year_founded": 2013,
                "number_of_offices": 3,
                "number_of_employees": 4,
                "annual_revenue": "8M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/adobe",
                "latitude": "42.789207",
                "longitude": "-75.554249",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-08T16:23:08.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 1,
                    "name": "Contract",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 17, 2025",
            "created_at": "2025-09-17T14:10:33.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 5,
                "name": "Denmark"
            },
            "city": {
                "id": 5,
                "name": "Copenhagen"
            },
            "latitude": "42.789207",
            "longitude": "-75.554249"
        },
        {
            "id": 8,
            "name": "Products Manager",
            "url": "https://jobcy.botble.com/jobs/products-manager",
            "description": "Est vel recusandae reiciendis omnis. Ipsa sunt culpa architecto modi. Aut perferendis qui blanditiis. Sapiente occaecati ratione numquam culpa sed sapiente.",
            "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": "1500.00",
            "salary_range": {
                "value": "hourly",
                "label": "Hourly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,500.00 /hourly",
            "hide_salary": 0,
            "number_of_positions": 9,
            "expire_date": "2025-11-08T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-25T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/16-500x300.png",
            "company": {
                "id": 16,
                "name": "Woocommerce",
                "description": "Magni vel architecto dolorem reprehenderit provident. Ea suscipit omnis mollitia libero. Placeat dolorem soluta et est eos aut quasi rerum. Voluptatem perferendis blanditiis repellendus officiis.",
                "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": "947 Hertha Drive Apt. 438\nLindgrenbury, MO 68548-2653",
                "email": null,
                "phone": "+13257924142",
                "website": "https://woocommerce.com",
                "year_founded": 1980,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/16.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/16.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/woocommerce",
                "latitude": "43.168453",
                "longitude": "-75.42021",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-12-22T03:42:19.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 16, 2025",
            "created_at": "2025-09-16T15:08:39.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.168453",
            "longitude": "-75.42021"
        },
        {
            "id": 11,
            "name": "DevOps Architect",
            "url": "https://jobcy.botble.com/jobs/devops-architect",
            "description": "Rerum tempore quis magnam assumenda exercitationem quo. Et a aut et consequatur sapiente saepe. Sunt asperiores eveniet rerum tempore mollitia distinctio.",
            "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": "600.00",
            "salary_to": "1500.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,500.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 8,
            "expire_date": "2025-10-30T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-28T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/10-500x300.png",
            "company": {
                "id": 10,
                "name": "VKontakte",
                "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
                "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
                "email": null,
                "phone": "+16697002110",
                "website": "https://vk.com",
                "year_founded": 2021,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": "Vasya Pupkin",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vkontakte",
                "latitude": "43.193521",
                "longitude": "-75.875674",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-04-11T05:03:41.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 11, 2025",
            "created_at": "2025-09-11T15:04:48.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.193521",
            "longitude": "-75.875674"
        },
        {
            "id": 20,
            "name": "Senior Compensation Analyst",
            "url": "https://jobcy.botble.com/jobs/senior-compensation-analyst",
            "description": "Qui ut quis est laboriosam. Accusamus quod aut eum et ipsum. Provident voluptatem rem debitis ea.",
            "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": "700.00",
            "salary_to": "2000.00",
            "salary_range": {
                "value": "yearly",
                "label": "Yearly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$700.00 - $2,000.00 /yearly",
            "hide_salary": 0,
            "number_of_positions": 6,
            "expire_date": "2025-10-29T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-12T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/6-500x300.png",
            "company": {
                "id": 6,
                "name": "Behance",
                "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
                "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
                "email": null,
                "phone": "+14428747586",
                "website": "https://www.behance.net",
                "year_founded": 1978,
                "number_of_offices": 1,
                "number_of_employees": 3,
                "annual_revenue": "10M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/behance",
                "latitude": "43.221101",
                "longitude": "-76.469064",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-03-23T19:14:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 05, 2025",
            "created_at": "2025-09-05T22:42:42.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.221101",
            "longitude": "-76.469064"
        },
        {
            "id": 5,
            "name": "Frontend Developer",
            "url": "https://jobcy.botble.com/jobs/frontend-developer",
            "description": "At beatae quo ab voluptas sint nobis in. Possimus quasi quod enim earum blanditiis ipsa delectus. Qui fuga perspiciatis molestias enim nihil earum.",
            "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": "900.00",
            "salary_to": "2300.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$900.00 - $2,300.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-10-21T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-20T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/16-500x300.png",
            "company": {
                "id": 16,
                "name": "Woocommerce",
                "description": "Magni vel architecto dolorem reprehenderit provident. Ea suscipit omnis mollitia libero. Placeat dolorem soluta et est eos aut quasi rerum. Voluptatem perferendis blanditiis repellendus officiis.",
                "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": "947 Hertha Drive Apt. 438\nLindgrenbury, MO 68548-2653",
                "email": null,
                "phone": "+13257924142",
                "website": "https://woocommerce.com",
                "year_founded": 1980,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/16.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/16.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/woocommerce",
                "latitude": "43.168453",
                "longitude": "-75.42021",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-12-22T03:42:19.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 05, 2025",
            "created_at": "2025-09-05T19:30:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.168453",
            "longitude": "-75.42021"
        }
    ],
    "error": false,
    "message": null
}
 

GET api/v1/jobs/recent

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/jobs/recent" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 24,
            "name": "Deal Desk Manager",
            "url": "https://jobcy.botble.com/jobs/deal-desk-manager",
            "description": "Cumque dolor animi hic quibusdam corrupti et. Quae consectetur ea ut nisi voluptates velit quo et. Tenetur nam quas ducimus fugit rerum.",
            "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": "2300.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,300.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 7,
            "expire_date": "2025-11-26T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-19T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/1-500x300.png",
            "company": {
                "id": 1,
                "name": "Pinterest",
                "description": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
                "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": "36501 Kris Village\nPort Luna, MD 67602",
                "email": null,
                "phone": "+15419156738",
                "website": "https://www.pinterest.com",
                "year_founded": 1980,
                "number_of_offices": 1,
                "number_of_employees": 9,
                "annual_revenue": "8M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/pinterest",
                "latitude": "43.451068",
                "longitude": "-75.902191",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-08-09T10:13:58.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 30, 2025",
            "created_at": "2025-09-30T12:40:26.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.451068",
            "longitude": "-75.902191"
        },
        {
            "id": 32,
            "name": "Customer Success Architect",
            "url": "https://jobcy.botble.com/jobs/customer-success-architect",
            "description": "Molestiae nihil modi blanditiis porro optio asperiores nemo. Praesentium nesciunt veritatis repellendus sit libero facilis. Asperiores et cumque eos earum accusamus nulla.",
            "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": "500.00",
            "salary_to": "1900.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,900.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 6,
            "expire_date": "2025-10-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-29T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 5,
                    "name": "Part Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T22:34:52.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 18,
            "name": "Staff Software Engineer",
            "url": "https://jobcy.botble.com/jobs/staff-software-engineer",
            "description": "Cum molestiae laborum eveniet quas voluptatem dolorem rerum. Tempore a sit qui dignissimos dolores. Sint molestiae quia enim architecto voluptate error tempora.",
            "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": "2000.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,000.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 8,
            "expire_date": "2025-11-22T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-11T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/6-500x300.png",
            "company": {
                "id": 6,
                "name": "Behance",
                "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
                "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
                "email": null,
                "phone": "+14428747586",
                "website": "https://www.behance.net",
                "year_founded": 1978,
                "number_of_offices": 1,
                "number_of_employees": 3,
                "annual_revenue": "10M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/behance",
                "latitude": "43.221101",
                "longitude": "-76.469064",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-03-23T19:14:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 4,
                    "name": "Internship",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T21:11:10.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.221101",
            "longitude": "-76.469064"
        },
        {
            "id": 41,
            "name": "Services Delivery Manager",
            "url": "https://jobcy.botble.com/jobs/services-delivery-manager",
            "description": "Sed at eligendi eos iste itaque aperiam. Quis sit ipsam asperiores voluptas veniam maxime ullam. Excepturi voluptate culpa quibusdam atque et ratione consectetur consectetur.",
            "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": "600.00",
            "salary_to": "1100.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,100.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 10,
            "expire_date": "2025-11-20T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-22T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/3-500x300.png",
            "company": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T15:11:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            },
            "latitude": "42.492485",
            "longitude": "-76.161314"
        },
        {
            "id": 40,
            "name": "Services Sales Representative",
            "url": "https://jobcy.botble.com/jobs/services-sales-representative",
            "description": "Itaque cum laboriosam sunt non officia. Ut nesciunt quasi itaque eum asperiores. Cupiditate odit maxime nemo repudiandae.",
            "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": "500.00",
            "salary_to": "1200.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,200.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 2,
            "expire_date": "2025-10-29T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-26T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/3-500x300.png",
            "company": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 28, 2025",
            "created_at": "2025-09-28T19:45:28.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            },
            "latitude": "42.492485",
            "longitude": "-76.161314"
        },
        {
            "id": 38,
            "name": "Technical Partner Manager",
            "url": "https://jobcy.botble.com/jobs/technical-partner-manager",
            "description": "Suscipit consectetur animi pariatur non aperiam nisi. Odit harum quo quis. Dolor veniam accusamus necessitatibus quis dolor.",
            "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": "2400.00",
            "salary_range": {
                "value": "hourly",
                "label": "Hourly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,200.00 - $2,400.00 /hourly",
            "hide_salary": 0,
            "number_of_positions": 5,
            "expire_date": "2025-11-19T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-20T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/10-500x300.png",
            "company": {
                "id": 10,
                "name": "VKontakte",
                "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
                "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
                "email": null,
                "phone": "+16697002110",
                "website": "https://vk.com",
                "year_founded": 2021,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": "Vasya Pupkin",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vkontakte",
                "latitude": "43.193521",
                "longitude": "-75.875674",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-04-11T05:03:41.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 28, 2025",
            "created_at": "2025-09-28T01:01:31.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.193521",
            "longitude": "-75.875674"
        },
        {
            "id": 44,
            "name": "Senior Director, Global Sales Development",
            "url": "https://jobcy.botble.com/jobs/senior-director-global-sales-development",
            "description": "Atque velit earum et sit. Ducimus cum autem nulla sed tempora non numquam. Quasi enim aut veritatis laboriosam.",
            "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": "600.00",
            "salary_to": "1800.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,800.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-04T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-25T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/4-500x300.png",
            "company": {
                "id": 4,
                "name": "Uber",
                "description": "Possimus perspiciatis et quidem non. Fuga facere natus exercitationem voluptatibus. In non velit harum repudiandae occaecati iure dolorem. Ullam ut sapiente sapiente in tempora.",
                "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": "2273 Nasir Rest Suite 140\nAlisastad, IL 41934",
                "email": null,
                "phone": "+13602333544",
                "website": "https://www.uber.com",
                "year_founded": 1996,
                "number_of_offices": 6,
                "number_of_employees": 7,
                "annual_revenue": "10M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/uber",
                "latitude": "43.450592",
                "longitude": "-76.37442",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-15T10:38:13.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 27, 2025",
            "created_at": "2025-09-27T17:29:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 3,
                "name": "New York"
            },
            "city": {
                "id": 3,
                "name": "New York"
            },
            "latitude": "43.450592",
            "longitude": "-76.37442"
        },
        {
            "id": 22,
            "name": "Analyst Relations Manager, Application Security",
            "url": "https://jobcy.botble.com/jobs/analyst-relations-manager-application-security",
            "description": "Velit quo dolor sapiente perferendis rerum placeat est. Sed minus sit et totam. Libero adipisci et et 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": 1,
            "salary_from": "900.00",
            "salary_to": "1600.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$900.00 - $1,600.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 2,
            "expire_date": "2025-11-22T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-02T00:00:00.000000Z",
            "views": 1,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 9,
                    "name": "Consumer Packaged Goods (CPG)",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/consumer-packaged-goods-cpg",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 8,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 26, 2025",
            "created_at": "2025-09-26T18:46:04.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 49,
            "name": "Inside Account Manager",
            "url": "https://jobcy.botble.com/jobs/inside-account-manager",
            "description": "Necessitatibus distinctio a ad alias officia doloribus. Expedita aut at voluptas quos. Vitae qui in sed rerum. Rerum optio voluptatem velit dolor neque.",
            "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": "800.00",
            "salary_to": "1700.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$800.00 - $1,700.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-02T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/11-500x300.png",
            "company": {
                "id": 11,
                "name": "WordPress",
                "description": "Dolores soluta aut tenetur soluta nobis aut a. Harum et rerum voluptas consequatur. Ut deserunt earum earum optio.",
                "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": "141 Nona Port Apt. 263\nCiarahaven, DE 60104",
                "email": null,
                "phone": "+18206658912",
                "website": "https://wordpress.org",
                "year_founded": 2014,
                "number_of_offices": 9,
                "number_of_employees": 4,
                "annual_revenue": "5M",
                "ceo": "Matt Mullenweg",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/wordpress",
                "latitude": "42.755309",
                "longitude": "-76.382025",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-30T03:47:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 24, 2025",
            "created_at": "2025-09-24T03:57:43.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "42.755309",
            "longitude": "-76.382025"
        },
        {
            "id": 30,
            "name": "Corporate Sales Representative",
            "url": "https://jobcy.botble.com/jobs/corporate-sales-representative",
            "description": "Occaecati voluptatem officia voluptatem quod voluptas. Enim in aut deleniti enim vel dolorum. Sunt laborum unde vel qui. Ipsa commodi quae unde dolorem.",
            "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": "2300.00",
            "salary_range": {
                "value": "yearly",
                "label": "Yearly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,500.00 - $2,300.00 /yearly",
            "hide_salary": 0,
            "number_of_positions": 5,
            "expire_date": "2025-11-05T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-11T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/11-500x300.png",
            "company": {
                "id": 11,
                "name": "WordPress",
                "description": "Dolores soluta aut tenetur soluta nobis aut a. Harum et rerum voluptas consequatur. Ut deserunt earum earum optio.",
                "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": "141 Nona Port Apt. 263\nCiarahaven, DE 60104",
                "email": null,
                "phone": "+18206658912",
                "website": "https://wordpress.org",
                "year_founded": 2014,
                "number_of_offices": 9,
                "number_of_employees": 4,
                "annual_revenue": "5M",
                "ceo": "Matt Mullenweg",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/11.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/wordpress",
                "latitude": "42.755309",
                "longitude": "-76.382025",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-30T03:47:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 22, 2025",
            "created_at": "2025-09-22T23:55:26.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "42.755309",
            "longitude": "-76.382025"
        }
    ],
    "error": false,
    "message": null
}
 

Request      

GET api/v1/jobs/recent

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/jobs/popular" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/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": 22,
            "name": "Analyst Relations Manager, Application Security",
            "url": "https://jobcy.botble.com/jobs/analyst-relations-manager-application-security",
            "description": "Velit quo dolor sapiente perferendis rerum placeat est. Sed minus sit et totam. Libero adipisci et et 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": 1,
            "salary_from": "900.00",
            "salary_to": "1600.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$900.00 - $1,600.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 2,
            "expire_date": "2025-11-22T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-02T00:00:00.000000Z",
            "views": 1,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 9,
                    "name": "Consumer Packaged Goods (CPG)",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/consumer-packaged-goods-cpg",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 8,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 26, 2025",
            "created_at": "2025-09-26T18:46:04.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 4,
            "name": "Digital Marketing Manager",
            "url": "https://jobcy.botble.com/jobs/digital-marketing-manager",
            "description": "Cum voluptatem voluptatibus eaque voluptatem. Qui est et perferendis architecto molestiae voluptates nobis. Odio ipsa non veniam dolorem ipsam illo quam. Aspernatur neque consequatur non quod.",
            "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": "1400.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$800.00 - $1,400.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 7,
            "expire_date": "2025-11-08T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-20T00:00:00.000000Z",
            "views": 1,
            "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": "https://jobcy.botble.com/storage/themes/jobcy/companies/8-500x300.png",
            "company": {
                "id": 8,
                "name": "Adobe",
                "description": "Ut et est veritatis repudiandae assumenda tempora possimus. Optio doloremque ex quia. Et repellat ea aut molestias.",
                "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": "836 Corene Underpass\nNew Lester, ID 92269-3603",
                "email": null,
                "phone": "+16366079095",
                "website": "https://www.adobe.com",
                "year_founded": 2013,
                "number_of_offices": 3,
                "number_of_employees": 4,
                "annual_revenue": "8M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/8.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/adobe",
                "latitude": "42.789207",
                "longitude": "-75.554249",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-06-08T16:23:08.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 1,
                    "name": "Contract",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 2,
                    "name": "Technology",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/technology",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 1,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 17, 2025",
            "created_at": "2025-09-17T14:10:33.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 5,
                "name": "Denmark"
            },
            "city": {
                "id": 5,
                "name": "Copenhagen"
            },
            "latitude": "42.789207",
            "longitude": "-75.554249"
        },
        {
            "id": 29,
            "name": "Alliances Director",
            "url": "https://jobcy.botble.com/jobs/alliances-director",
            "description": "Ipsa architecto necessitatibus corrupti molestiae eaque quod sit. Vel eveniet earum commodi rerum. Adipisci corrupti voluptas autem quo qui.",
            "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": "1500.00",
            "salary_to": "2900.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,500.00 - $2,900.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 8,
            "expire_date": "2025-11-01T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-01T00:00:00.000000Z",
            "views": 1,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/5-500x300.png",
            "company": {
                "id": 5,
                "name": "Flutter",
                "description": "Officia necessitatibus reprehenderit inventore quasi. Qui accusantium est incidunt nisi tempore. Aut veniam soluta ut 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": "46359 Gutmann Via\nNorth Fredyborough, AZ 05248",
                "email": null,
                "phone": "+17063977820",
                "website": "https://flutter.io",
                "year_founded": 1983,
                "number_of_offices": 8,
                "number_of_employees": 9,
                "annual_revenue": "4M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/5.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/flutter",
                "latitude": "42.517019",
                "longitude": "-75.323091",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-07-14T10:19:18.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 4,
                    "name": "Internship",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 7,
                    "name": "Design & Multimedia",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/design-multimedia",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 6,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Aug 28, 2025",
            "created_at": "2025-08-28T08:43:38.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "42.517019",
            "longitude": "-75.323091"
        },
        {
            "id": 24,
            "name": "Deal Desk Manager",
            "url": "https://jobcy.botble.com/jobs/deal-desk-manager",
            "description": "Cumque dolor animi hic quibusdam corrupti et. Quae consectetur ea ut nisi voluptates velit quo et. Tenetur nam quas ducimus fugit rerum.",
            "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": "2300.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,300.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 7,
            "expire_date": "2025-11-26T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-19T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/1-500x300.png",
            "company": {
                "id": 1,
                "name": "Pinterest",
                "description": "Est explicabo nemo officia harum vero. Sed aut aut quo assumenda repellat. Et molestias ducimus sit corporis totam culpa.",
                "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": "36501 Kris Village\nPort Luna, MD 67602",
                "email": null,
                "phone": "+15419156738",
                "website": "https://www.pinterest.com",
                "year_founded": 1980,
                "number_of_offices": 1,
                "number_of_employees": 9,
                "annual_revenue": "8M",
                "ceo": null,
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/1.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/pinterest",
                "latitude": "43.451068",
                "longitude": "-75.902191",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-08-09T10:13:58.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 30, 2025",
            "created_at": "2025-09-30T12:40:26.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.451068",
            "longitude": "-75.902191"
        },
        {
            "id": 32,
            "name": "Customer Success Architect",
            "url": "https://jobcy.botble.com/jobs/customer-success-architect",
            "description": "Molestiae nihil modi blanditiis porro optio asperiores nemo. Praesentium nesciunt veritatis repellendus sit libero facilis. Asperiores et cumque eos earum accusamus nulla.",
            "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": "500.00",
            "salary_to": "1900.00",
            "salary_range": {
                "value": "weekly",
                "label": "Weekly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,900.00 /weekly",
            "hide_salary": 0,
            "number_of_positions": 6,
            "expire_date": "2025-10-27T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-29T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/9-500x300.png",
            "company": {
                "id": 9,
                "name": "Vibe",
                "description": "Cumque dolorem quia veniam aut reiciendis quod. Illo voluptatem harum odio officiis quibusdam quaerat.",
                "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": "9896 Dibbert Manor\nRexshire, SD 52531",
                "email": null,
                "phone": "+12135853703",
                "website": "https://www.vibe.com",
                "year_founded": 2017,
                "number_of_offices": 9,
                "number_of_employees": 9,
                "annual_revenue": "3M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/9.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vibe",
                "latitude": "43.73405",
                "longitude": "-74.917658",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-11-18T13:18:55.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 5,
                    "name": "Part Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T22:34:52.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 2,
                "name": "England"
            },
            "city": {
                "id": 2,
                "name": "London"
            },
            "latitude": "43.73405",
            "longitude": "-74.917658"
        },
        {
            "id": 18,
            "name": "Staff Software Engineer",
            "url": "https://jobcy.botble.com/jobs/staff-software-engineer",
            "description": "Cum molestiae laborum eveniet quas voluptatem dolorem rerum. Tempore a sit qui dignissimos dolores. Sint molestiae quia enim architecto voluptate error tempora.",
            "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": "2000.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,000.00 - $2,000.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 8,
            "expire_date": "2025-11-22T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-11T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/6-500x300.png",
            "company": {
                "id": 6,
                "name": "Behance",
                "description": "Sed consequatur laboriosam perferendis quia natus. Consequatur facere ut quis rerum maxime magnam totam. Ex assumenda voluptas nemo sed aut quam libero.",
                "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": "316 Luigi Mission Suite 549\nNorth Juddland, VT 45714-0850",
                "email": null,
                "phone": "+14428747586",
                "website": "https://www.behance.net",
                "year_founded": 1978,
                "number_of_offices": 1,
                "number_of_employees": 3,
                "annual_revenue": "10M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/6.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/behance",
                "latitude": "43.221101",
                "longitude": "-76.469064",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-03-23T19:14:11.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 4,
                    "name": "Internship",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T21:11:10.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.221101",
            "longitude": "-76.469064"
        },
        {
            "id": 41,
            "name": "Services Delivery Manager",
            "url": "https://jobcy.botble.com/jobs/services-delivery-manager",
            "description": "Sed at eligendi eos iste itaque aperiam. Quis sit ipsam asperiores voluptas veniam maxime ullam. Excepturi voluptate culpa quibusdam atque et ratione consectetur consectetur.",
            "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": "600.00",
            "salary_to": "1100.00",
            "salary_range": {
                "value": "monthly",
                "label": "Monthly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,100.00 /monthly",
            "hide_salary": 0,
            "number_of_positions": 10,
            "expire_date": "2025-11-20T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-22T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/3-500x300.png",
            "company": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 29, 2025",
            "created_at": "2025-09-29T15:11:11.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            },
            "latitude": "42.492485",
            "longitude": "-76.161314"
        },
        {
            "id": 40,
            "name": "Services Sales Representative",
            "url": "https://jobcy.botble.com/jobs/services-sales-representative",
            "description": "Itaque cum laboriosam sunt non officia. Ut nesciunt quasi itaque eum asperiores. Cupiditate odit maxime nemo repudiandae.",
            "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": "500.00",
            "salary_to": "1200.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$500.00 - $1,200.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 2,
            "expire_date": "2025-10-29T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-11-26T00: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": "https://jobcy.botble.com/storage/themes/jobcy/companies/3-500x300.png",
            "company": {
                "id": 3,
                "name": "Line",
                "description": "Numquam rerum ipsa cupiditate eum. Ut tenetur qui maxime excepturi. Sapiente qui iure nemo quos aspernatur libero est.",
                "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": "4764 Corwin Drive\nCorwinberg, GA 85050",
                "email": null,
                "phone": "+17258389816",
                "website": "https://line.me",
                "year_founded": 2016,
                "number_of_offices": 2,
                "number_of_employees": 7,
                "annual_revenue": "1M",
                "ceo": "Nakamura",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/3.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/line",
                "latitude": "42.492485",
                "longitude": "-76.161314",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-14T03:07:52.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:41.000000Z",
                "updated_at": "2025-10-01T03:01:41.000000Z"
            },
            "job_types": [
                {
                    "id": 3,
                    "name": "Full Time",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 4,
                    "name": "Accounting / Finance",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/accounting-finance",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 3,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 6,
                    "name": "Tele-communications",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/tele-communications",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 5,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 28, 2025",
            "created_at": "2025-09-28T19:45:28.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 1,
                "name": "France"
            },
            "city": {
                "id": 1,
                "name": "Paris"
            },
            "latitude": "42.492485",
            "longitude": "-76.161314"
        },
        {
            "id": 38,
            "name": "Technical Partner Manager",
            "url": "https://jobcy.botble.com/jobs/technical-partner-manager",
            "description": "Suscipit consectetur animi pariatur non aperiam nisi. Odit harum quo quis. Dolor veniam accusamus necessitatibus quis dolor.",
            "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": "2400.00",
            "salary_range": {
                "value": "hourly",
                "label": "Hourly"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$1,200.00 - $2,400.00 /hourly",
            "hide_salary": 0,
            "number_of_positions": 5,
            "expire_date": "2025-11-19T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-20T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 0,
            "auto_renew": 0,
            "never_expired": 0,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/10-500x300.png",
            "company": {
                "id": 10,
                "name": "VKontakte",
                "description": "Rem nam qui animi pariatur provident non. Dolorem aut ut exercitationem aliquam dolores ex facilis assumenda.",
                "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": "5661 Herman Neck Suite 723\nLake Micah, NH 56752",
                "email": null,
                "phone": "+16697002110",
                "website": "https://vk.com",
                "year_founded": 2021,
                "number_of_offices": 4,
                "number_of_employees": 2,
                "annual_revenue": "9M",
                "ceo": "Vasya Pupkin",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/10.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/vkontakte",
                "latitude": "43.193521",
                "longitude": "-75.875674",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2025-04-11T05:03:41.000000Z",
                "updated_at": "2025-10-01T03:01:36.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": 2,
                    "name": "Freelance",
                    "order": 0,
                    "status": {
                        "value": "published",
                        "label": "Published"
                    },
                    "created_at": "2025-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 3,
                    "name": "Government",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/government",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 2,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 10,
                    "name": "Manufacturing",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/manufacturing",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 0,
                    "order": 9,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 28, 2025",
            "created_at": "2025-09-28T01:01:31.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 6,
                "name": "Germany"
            },
            "city": {
                "id": 6,
                "name": "Berlin"
            },
            "latitude": "43.193521",
            "longitude": "-75.875674"
        },
        {
            "id": 44,
            "name": "Senior Director, Global Sales Development",
            "url": "https://jobcy.botble.com/jobs/senior-director-global-sales-development",
            "description": "Atque velit earum et sit. Ducimus cum autem nulla sed tempora non numquam. Quasi enim aut veritatis laboriosam.",
            "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": "600.00",
            "salary_to": "1800.00",
            "salary_range": {
                "value": "daily",
                "label": "Daily"
            },
            "salary_type": {
                "value": "fixed",
                "label": "Fixed"
            },
            "salary_text": "$600.00 - $1,800.00 /daily",
            "hide_salary": 0,
            "number_of_positions": 4,
            "expire_date": "2025-11-04T00:00:00.000000Z",
            "start_date": null,
            "application_closing_date": "2025-10-25T00:00:00.000000Z",
            "views": 0,
            "number_of_applied": 0,
            "hide_company": 0,
            "is_featured": 1,
            "auto_renew": 0,
            "never_expired": 1,
            "is_job_open": false,
            "zip_code": null,
            "unique_id": null,
            "image": "https://jobcy.botble.com/storage/themes/jobcy/companies/4-500x300.png",
            "company": {
                "id": 4,
                "name": "Uber",
                "description": "Possimus perspiciatis et quidem non. Fuga facere natus exercitationem voluptatibus. In non velit harum repudiandae occaecati iure dolorem. Ullam ut sapiente sapiente in tempora.",
                "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": "2273 Nasir Rest Suite 140\nAlisastad, IL 41934",
                "email": null,
                "phone": "+13602333544",
                "website": "https://www.uber.com",
                "year_founded": 1996,
                "number_of_offices": 6,
                "number_of_employees": 7,
                "annual_revenue": "10M",
                "ceo": "John Doe",
                "is_featured": 1,
                "status": {
                    "value": "published",
                    "label": "Published"
                },
                "postal_code": null,
                "tax_id": null,
                "unique_id": null,
                "logo": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "logo_thumb": "https://jobcy.botble.com/storage/themes/jobcy/companies/4.png",
                "cover_image_url": "https://jobcy.botble.com/storage/themes/jobcy/general/cover-image.jpg",
                "url": "https://jobcy.botble.com/companies/uber",
                "latitude": "43.450592",
                "longitude": "-76.37442",
                "facebook": null,
                "twitter": null,
                "linkedin": null,
                "instagram": null,
                "created_at": "2024-10-15T10:38:13.000000Z",
                "updated_at": "2025-10-01T03:01:36.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-10-01T03:01:35.000000Z",
                    "updated_at": "2025-10-01T03:01:35.000000Z"
                }
            ],
            "categories": [
                {
                    "id": 1,
                    "name": "IT & Software",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/it-software",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 0,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 5,
                    "name": "Construction / Facilities",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/construction-facilities",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 4,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                },
                {
                    "id": 8,
                    "name": "Human Resource",
                    "description": null,
                    "url": "https://jobcy.botble.com/job-categories/human-resource",
                    "icon": null,
                    "icon_image": null,
                    "is_featured": 1,
                    "order": 7,
                    "created_at": "2025-10-01T03:01:34.000000Z",
                    "updated_at": "2025-10-01T03:01:34.000000Z"
                }
            ],
            "date": "Sep 27, 2025",
            "created_at": "2025-09-27T17:29:25.000000Z",
            "updated_at": "2025-10-01T03:01:36.000000Z",
            "state": {
                "id": 3,
                "name": "New York"
            },
            "city": {
                "id": 3,
                "name": "New York"
            },
            "latitude": "43.450592",
            "longitude": "-76.37442"
        }
    ],
    "error": false,
    "message": null
}
 

Apply for a job

requires authentication

Submit an application for a specific job. Requires authentication.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/jobs/564/apply" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"job_type\": \"internal\",
    \"email\": \"[email protected]\",
    \"message\": \"I am very interested in this position...\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/jobs/564/apply"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "job_type": "internal",
    "email": "[email protected]",
    "message": "I am very interested in this position..."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/jobs/{id}/apply

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the job. Example: 564

Body Parameters

job_type   string  optional    

Type of job application (internal or external). Example: internal

Must be one of:
  • internal
  • external
email   string     

Applicant's email address. Must be a valid email address. Example: [email protected]

message   string  optional    

Cover message or additional information. Must not be greater than 1000 characters. Example: I am very interested in this position...

Languages

Get list of available languages

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/languages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/languages"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": [
        {
            "lang_id": 1,
            "lang_name": "English",
            "lang_locale": "en",
            "lang_code": "en_US",
            "lang_flag": "<svg ...>",
            "lang_is_default": true,
            "lang_is_rtl": false,
            "lang_order": 0
        },
        {
            "lang_id": 2,
            "lang_name": "Vietnamese",
            "lang_locale": "vi",
            "lang_code": "vi",
            "lang_flag": "<svg ...>",
            "lang_is_default": false,
            "lang_is_rtl": false,
            "lang_order": 1
        }
    ],
    "message": null
}
 

Request      

GET api/v1/languages

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Get current language

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/languages/current" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/languages/current"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "lang_id": 1,
        "lang_name": "English",
        "lang_locale": "en",
        "lang_code": "en_US",
        "lang_flag": "us",
        "lang_is_default": true,
        "lang_is_rtl": false,
        "lang_order": 0
    },
    "message": null
}
 

Request      

GET api/v1/languages/current

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Notifications

Get user notifications

Retrieve notifications for the authenticated user.

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/notifications?page=1&per_page=20&unread_only=&type=general" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/notifications"
);

const params = {
    "page": "1",
    "per_page": "20",
    "unread_only": "0",
    "type": "general",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/notifications

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

Page number for pagination. Example: 1

per_page   integer  optional    

Number of notifications per page (max 50). Example: 20

unread_only   boolean  optional    

Filter to show only unread notifications. Example: false

type   string  optional    

Filter by notification type. Example: general

Get notification statistics

Get notification statistics for the authenticated user.

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/notifications/stats" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/notifications/stats"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/notifications/stats

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Mark all notifications as read

Mark all notifications as read for the authenticated user.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/notifications/mark-all-read" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/notifications/mark-all-read"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/notifications/mark-all-read

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Mark notification as read

Mark a specific notification as read for the authenticated user.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/notifications/564/read" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/notifications/564/read"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/notifications/{id}/read

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification. Example: 564

Mark notification as clicked

Mark a notification as clicked when user taps on it.

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/notifications/564/clicked" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/notifications/564/clicked"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/notifications/{id}/clicked

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification. Example: 564

Delete notification

Delete a notification from user's list.

Example request:
curl --request DELETE \
    "https://jobcy.botble.com/api/v1/notifications/564" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/notifications/564"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/v1/notifications/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the notification. Example: 564

Page

List pages

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/pages?per_page=16&page=16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/pages"
);

const params = {
    "per_page": "16",
    "page": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": [
        {
            "id": 1,
            "title": "About Us",
            "slug": "about-us",
            "content": "This is the about us page content...",
            "published_at": "2023-01-01T00:00:00.000000Z"
        }
    ],
    "message": null
}
 

Request      

GET api/v1/pages

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items to return per page (default: 10). Example: 16

page   integer  optional    

The page number to retrieve (default: 1). Example: 16

Get page by ID

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/pages/16" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/pages/16"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "id": 1,
        "title": "About Us",
        "slug": "about-us",
        "content": "This is the about us page content...",
        "published_at": "2023-01-01T00:00:00.000000Z"
    },
    "message": null
}
 

Example response (404):


{
    "error": true,
    "message": "Not found"
}
 

Request      

GET api/v1/pages/{id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the page to retrieve. Example: 16

Profile

Get the user profile information.

requires authentication

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/me" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/me"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/me

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Update profile

requires authentication

Example request:
curl --request PUT \
    "https://jobcy.botble.com/api/v1/me" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"first_name\": \"bngz\",
    \"last_name\": \"miyv\",
    \"name\": \"architecto\",
    \"phone\": \"architecto\",
    \"dob\": \"architecto\",
    \"gender\": \"architecto\",
    \"description\": \"Eius et animi quos velit et.\",
    \"email\": \"[email protected]\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/me"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "first_name": "bngz",
    "last_name": "miyv",
    "name": "architecto",
    "phone": "architecto",
    "dob": "architecto",
    "gender": "architecto",
    "description": "Eius et animi quos velit et.",
    "email": "[email protected]"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/me

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

first_name   string  optional    

This field is required when name is not present. Must not be greater than 120 characters. Must be at least 2 characters. Example: bngz

last_name   string  optional    

This field is required when name is not present. Must not be greater than 120 characters. Must be at least 2 characters. Example: miyv

name   string     

Name. Example: architecto

phone   string     

Phone. Example: architecto

dob   date  optional    

nullable Date of birth (format: Y-m-d). Example: architecto

gender   string  optional    

Gender (male, female, other). Example: architecto

description   string  optional    

Description Example: Eius et animi quos velit et.

email   string  optional    

Email. Example: [email protected]

Update Avatar

requires authentication

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/update/avatar" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "avatar=@/tmp/phpevlAj5" 
const url = new URL(
    "https://jobcy.botble.com/api/v1/update/avatar"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('avatar', document.querySelector('input[name="avatar"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/v1/update/avatar

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

avatar   file     

Avatar file. Example: /tmp/phpevlAj5

Update password

requires authentication

Example request:
curl --request PUT \
    "https://jobcy.botble.com/api/v1/update/password" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"password\": \"|]|{+-\",
    \"old_password\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/update/password"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "password": "|]|{+-",
    "old_password": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/update/password

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

password   string     

The new password of user. Example: |]|{+-

old_password   string     

The current password of user. Example: architecto

Get user settings

requires authentication

Example request:
curl --request GET \
    --get "https://jobcy.botble.com/api/v1/settings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://jobcy.botble.com/api/v1/settings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/settings

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Update user settings

requires authentication

Example request:
curl --request PUT \
    "https://jobcy.botble.com/api/v1/settings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"biometric_enabled\": false,
    \"notification_enabled\": false,
    \"language\": \"architecto\",
    \"currency\": \"architecto\",
    \"theme\": \"architecto\",
    \"timezone\": \"Asia\\/Yekaterinburg\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/settings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "biometric_enabled": false,
    "notification_enabled": false,
    "language": "architecto",
    "currency": "architecto",
    "theme": "architecto",
    "timezone": "Asia\/Yekaterinburg"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/settings

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

biometric_enabled   boolean  optional    

Enable/disable biometric authentication. Example: false

notification_enabled   boolean  optional    

Enable/disable notifications. Example: false

language   string  optional    

User's preferred language. Example: architecto

currency   string  optional    

User's preferred currency. Example: architecto

theme   string  optional    

User's preferred theme (light, dark, auto). Example: architecto

timezone   string  optional    

User's timezone. Example: Asia/Yekaterinburg

Reviews

Submit a review

requires authentication

Submit a review for a company or candidate. Requires authentication.

Example request:
curl --request POST \
    "https://jobcy.botble.com/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(
    "https://jobcy.botble.com/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());

Request      

POST api/v1/reviews

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

reviewable_type   string     

Type of entity being reviewed (Company or Account). Example: Botble\JobBoard\Models\Company

Must be one of:
  • Botble\JobBoard\Models\Company
  • Botble\JobBoard\Models\Account
reviewable_id   string     

ID of the entity being reviewed. Example: 1

Social Login

Apple login

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/auth/apple" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"identityToken\": \"architecto\",
    \"guard\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/auth/apple"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "identityToken": "architecto",
    "guard": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "token": "1|abc123def456...",
        "user": {
            "id": 1,
            "name": "John Doe",
            "email": "[email protected]"
        }
    },
    "message": "Login successful"
}
 

Example response (400):


{
    "error": true,
    "message": "Invalid Apple token"
}
 

Example response (400):


{
    "error": true,
    "message": "Cannot login, no email or Apple ID provided!"
}
 

Request      

POST api/v1/auth/apple

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

identityToken   string     

The Apple identity token received from Apple Sign-In. Example: architecto

guard   string  optional    

optional The guard to use for authentication (default: web). Example: architecto

Google login

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/auth/google" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"identityToken\": \"architecto\",
    \"guard\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/auth/google"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "identityToken": "architecto",
    "guard": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "token": "1|abc123def456...",
        "user": {
            "id": 1,
            "name": "John Doe",
            "email": "[email protected]"
        }
    },
    "message": "Login successful"
}
 

Example response (400):


{
    "error": true,
    "message": "Invalid Google token"
}
 

Example response (400):


{
    "error": true,
    "message": "Google authentication is not properly configured"
}
 

Request      

POST api/v1/auth/google

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

identityToken   string     

The Google identity token received from Google Sign-In. Example: architecto

guard   string  optional    

optional The guard to use for authentication (default: web). Example: architecto

Facebook login

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/auth/facebook" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"accessToken\": \"architecto\",
    \"guard\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/auth/facebook"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "accessToken": "architecto",
    "guard": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "token": "1|abc123def456...",
        "user": {
            "id": 1,
            "name": "John Doe",
            "email": "[email protected]"
        }
    },
    "message": "Login successful"
}
 

Example response (400):


{
    "error": true,
    "message": "Invalid Facebook token"
}
 

Example response (400):


{
    "error": true,
    "message": "Facebook authentication is not properly configured"
}
 

Request      

POST api/v1/auth/facebook

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

accessToken   string     

The Facebook access token received from Facebook Login. Example: architecto

guard   string  optional    

optional The guard to use for authentication (default: web). Example: architecto

X (Twitter) login

Example request:
curl --request POST \
    "https://jobcy.botble.com/api/v1/auth/x" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"accessToken\": \"architecto\",
    \"guard\": \"architecto\"
}"
const url = new URL(
    "https://jobcy.botble.com/api/v1/auth/x"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "accessToken": "architecto",
    "guard": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "token": "1|abc123def456...",
        "user": {
            "id": 1,
            "name": "John Doe",
            "email": "[email protected]"
        }
    },
    "message": "Login successful"
}
 

Example response (400):


{
    "error": true,
    "message": "Invalid X (Twitter) token"
}
 

Example response (400):


{
    "error": true,
    "message": "X (Twitter) authentication is not properly configured"
}
 

Request      

POST api/v1/auth/x

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

accessToken   string     

The X (Twitter) access token received from X OAuth. Example: architecto

guard   string  optional    

optional The guard to use for authentication (default: web). Example: architecto